Archived topic
SideBar Font Change
5 replies · Started by Jahid on August 15, 2019
Hello
How can I change the font color and link color within sidebar only?
Noted: I want to change only the 2nd widget's font color in my site.
And Is there any way to change the link color and link color hover within text content? I already tried with Customizer>Color option. But it also change the hyperlink color within comparison table which I don't want to change.
Thanks
Hi there,
So just for the recent posts widget?
If so try this CSS:
.sidebar .recent-posts-extended a {
color: #000000;
}
.sidebar .recent-posts-extended a:hover {
color: #000000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Thank you so much, Leo!
That's what I wanted.
BTW, is there any way to solve the 2nd issue? As now I see button text and comparison table's button color is changing when hovering the mouse. Is there any way to stop this. I want to keep it unchangeable.
Thanks Again
Try this as well:
a.tcb-button-link:hover {
color: #ffffff;
}
Thank you very much, Leo!
That's what I was looking for.
No problem :)