Archived topic
Customize popular posts widget in sidebar
5 replies · Started by Carol on October 7, 2019
Possible to take off the blue color of post title/hyperlink, and add the horizontal lines like in this sample:
If not, no worries.
Thank you.
X80Ws+031v45
Hi there,
What do you mean by "take off"? Like to change a color?
If so try Customizer > Colors > Sidebar widgets > Link/Link Hover.
As for horizontal lines, try this CSS:
.rpwwt-widget ul li {
border-bottom: 1px solid #000;
}
Thanks for the reply.
Right now, the widget is putting in the set hyperlink color.
I want to change the hyperlink color to black - ONLY for this popular post widget.
Can the horizontal lines be the light grey in sample pic, please?
Thank you!
Try this CSS for the link color:
.sidebar .rpwwt-widget ul li a {
color: #000 !important;
}
As for the line color, you can modify the #000 in the code above to whatever color you want.
Wow -- Awesome!
Perfect!
Thank you!
No problem :)