Change Font Color: CSS for Header Menu and Footer
-
WordPress Chat rep gave me code to change the title text and navigation menu from black to white. The title text works. The navigation text works initially but them blinks back to black on some of the menus.
Also, I checked the box to include it on the mobile theme. On my cell phone the text in the header menu circle is still black. The Chat rep said I needed to contact the forum for assistance on this and also to change the text color to white on the footer. I appreciate your assistance on providing code for me to cut and paste.
Thanks,
MarionThe blog I need help with is: (visible only to logged in users)
-
Hi there,
The navigation text works initially but them blinks back to black on some of the menus.
→I investigated your site. It seems that the name of pages in navigation menu turn black once users visited that page, so you can add the following CSS code to make it always white.
.site-header .main-navigation a, .site-header .main-navigation a:visited { color: #fff; }.main-navigation .current_page_item>a:visited, .main-navigation .current-menu-item>a:visited, .main-navigation .current_page_ancestor>a:visited { color: #fff; }On my cell phone the text in the header menu circle is still black.
→Do you want to change it to white too? Please add the following CSS code then.
.menu-toggle { color: #fff; }At last, this is the CSS code to change the current text color to white in the footer.
#tertiary, #tertiary a, #tertiary a:visited { color: #fff; }#tertiary .widget-title { color: #fff; } -
-
- The topic ‘Change Font Color: CSS for Header Menu and Footer’ is closed to new replies.