Number articles?

Posted in: Newspaper
Post count: 34

Would it be possible to number articles? see image: https://imgur.com/a/gMfq3t0 (done in photoshop, one of left) It doesnt have to be that specific style, I just want it numbered, thanks.

Post count: 20688

Hi,

By a theme or block setting it is not possible. However I could give you a CSS code for it, for example – http://prntscr.com/o9w1so
This code will apply to the flex blocks in the homepage only, I could modify it if needed.
It can be entered in the theme panel custom CSS section

.home .td_flex_block_1 {
counter-reset: module;
}
.home .td_flex_block_1 .td_module_flex_1:after {
counter-increment: module;
content:counter(module);
position: absolute;
top: 0;
right: 20px;
color: white;
padding: 5px 10px;
background-color: rgba(25,27,26,0.5);
}

Let me know.
Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.