Footer lines – change color
-
There are lines between items in my footer that are currently black. I would like to remove them or make them white (whichever is easiest). They look odd against the navy background. I successfully made the footer text white but not sure how to fix the separating lines.
Theme: Maisha
Site: https://cc-researchfoundation.org/Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi @akilpatrickccinstituteorg,
PLEASE PUT BELOW CSS IN TO MY SITES > CUSTOMISE > ADDITIONAL CSS
Below code will change line colour to white. If you want it to remove then just delete the line or change border size 1px to 0.
.footer .widget_nav_menu li
{
border-top: 1px solid #ffffff;
}Let me know if it works.
-
A better option would be:
.footer .widget_nav_menu li { border-color: #fff; }to change the color, or:
.footer .widget_nav_menu li { border: none; }to remove the lines.
-
- The topic ‘Footer lines – change color’ is closed to new replies.