Site logo

Archived topic

Create a recent post with number

1 reply · Started by Hadi Mahmud on September 10, 2019

Viewing posts 1–2 of 2

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.