Menu: Font-color active menu

Professional Jomal template designed to be easily adaptable to all kinds of business
GK User
Mon Jul 16, 2012 1:01 pm
I want to change the font-color for the active menu item.

When you load: http://beta.salesconsultingonneken.com

The menu item "start" will have the orange background and a gray font-color. I cannot find the entry how to change the font-color to white. :dry:

Code: Select all
#gkMenu a:active {
color: #ffffff !important;
}

Does not seem to affect it.

Could you give me a hint? THANKS!
User avatar
Expert Boarder

Konrad M
Mon Jul 16, 2012 6:22 pm
Hi,
please try add this code:
Code: Select all
div.gk-menu > ul.level0 > li.active > a {
color: white;
}

Should help.
User avatar

GK User
Tue Jul 17, 2012 10:35 am
this works - thanks!

I also want to change the submenu font color:

passiv: white
hover: black

I already put this to change the passive to white, but I cannot seem to figure out how the hover command is
Code: Select all
div.gk-menu > ul.level0 > li .childcontent ul li a {
color: white;
}


thanks in advance!
User avatar
Expert Boarder

Konrad M
Tue Jul 17, 2012 6:22 pm
Please try use this code:
Code: Select all
div.gk-menu > ul.level0 > li .childcontent ul li a {
color: #fff;
}
div.gk-menu > ul.level0 > li .childcontent ul li a:hover {
color: #000;
}

should work.
User avatar

GK User
Wed Jul 18, 2012 8:45 am
works great! Thanks a lot!
User avatar
Expert Boarder