Change font color in sidebar

How do I change the font color of the sidebar? I went to Theme Options>Renew but I didn’t see any settings for the sidebar. Where did they move to?

How can I add a line between the widgets in the sidebar like the sidebar on www.nc-abl.org?

Hello @eutaw,

Thanks for posting in!

To change the font color of the sidebar and a line between the widgets, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-sidebar .widget h4 {
    border-top: 3px solid red;
    padding-top: 28px;
}

.x-sidebar .widget * {
    color: red;
}

.x-sidebar .form-search:before,
.x-sidebar .form-search input,
.x-sidebar .form-search input::placeholder{
    border-color: red;
    color: red !important;
}

Feel free to change the red color to something else.

Thank you.

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.