Archived topic
Create a recent post with number
1 reply · Started by Hadi Mahmud on September 10, 2019
Viewing posts 1–2 of 2
Hello,
How do I create a recent post with a number like in https://www.cyberciti.biz/ ?
Like this http://prntscr.com/p4jlbx
Thank you
Hi there,
so for the Recent Posts widget on your blog - try this:
.widget_recent_entries ul {
counter-reset: custom-counter;
position: relative;
}
.widget_recent_entries ul li {
counter-increment: custom-counter;
}
.widget_recent_entries ul li:before {
content: counter(custom-counter);
position: absolute;
left: 0;
font-size: 20px;
font-weight: 900;
}
This archived topic is closed to new replies.