How to change menu, highlight colour ?

eCommerce WordPress theme to create online shop with WooCommerce support
GK User
Thu Apr 03, 2014 12:07 am
Hi,

Would like to know where i need to go to so that i can change the colour of the menu when on the page. Right now if i have a "home" tab, and i am currently on home page, the font colour is purple. I'd like to change the colour of that.

Thanks
User avatar
Senior Boarder

GK User
Thu Apr 03, 2014 7:23 am
Hi,

Add this code into override.css file:

Code: Select all
#main-menu > li.current-menu-item,
#main-menu > li.current_page_item,
#main-menu > li:hover,
#main-menu > li a:hover,
#main-menu > li.active > a,
#main-menu > li.current-menu-item > a,
#main-menu > li.current_page_item > a,
#main-menu > li.current-menu-ancestor > a,
#main-menu > li.current-menu-parent > a  {
   color: #ddd;
}


or this if you want to change olny current menu item color:

Code: Select all
#main-menu > li.current-menu-item > a,
#main-menu > li.current_page_item > a{
   color: #aaa;
}
User avatar
Moderator

GK User
Thu Apr 03, 2014 7:36 am
Great thanks for that, just a quick question, i cannot find the override.css file inside admin panel>appearance>editor

does this file need to be changed in FTP ?
User avatar
Senior Boarder

GK User
Thu Apr 03, 2014 7:41 am
Yes, you should do it via FTP.
User avatar
Moderator

GK User
Thu Apr 03, 2014 7:43 am
awesome, thanks :) !!!! your the best dude.
User avatar
Senior Boarder


cron