Display Your Most Commented Posts in WordPress on a Badge

Опубликовано: 28 Сентябрь 2024
на канале: 2createawebsite
2,589
14

Learn how to display your most commented posts in WordPress using a graphical badge. Here's the CSS code...

#mostcommented {

display: block;
background-image: url('images/YourImage.jpg');
background-repeat: no-repeat;
width: 422px;
height: 409px;
padding-left: 40px;
padding-top: 76px;

}

#mostcommented ul {

margin: auto;

}

#mostcommented ul li {

list-style-type: none;

}

#mostcommented ul li a {

color: #000000;

}

#mostcommented ul li a:hover {

color: #000000;
text-decoration: none;

}