Hi,
I am trying to customize the sidebar font color.
I have tried the following in the quick css without success:
#top #main
.sidebar {
background-color:#738ca2;
font-size:80%;
font-color: #fff;
}
Any clues?
Hello lpongo!
You can try forcing it by adding !important
#top #main
.sidebar {
background-color:#738ca2!important;
font-size:80%!important;
font-color: #fff!important;
}
If that does not work, please post the link to your website
Best regards,
Yigit
It worked for the text but broke the bg-color attribute
Hello!
Currently your sidebar loks like your “before” screenshot.
If you would like to change background color to white, please add following code to Quick CSS as well
#top #main .sidebar { background-color: white; }
Regards,
Yigit
That’s what I meant, I can get the font to be white (intended) but then the background is white too (not intended).
When using
#top #main
.sidebar {
background-color:#738ca2!important;
font-size:80%!important;
font-color: #fff!important;
}
The background should be blue (#738ca2) and now it is not. How can I solve this?
Hey!
Currently your sidebar is blue? You just need to change sidebar link colors. Please add following code to Quick CSS
.main_color .sidebar a { color: white; }
.main_color .sidebar a:hover { color: green; }
.main_color .sidebar .current_page_item>a { color: purple; }
Best regards,
Yigit
Working, thanks!