Tagged: active, enfold menu, header, hover
Hey guys –
About wrapped up this site – http://codelessme.com/carolinalock
Last two things for this one:
1. How do you set active menu color?
2. Following your directions for header height, I have now ended up with a massive 300px tall hover area for each menu item. How do I limit it to a few pixels above and below and not the entire height of the header?
Hey zerozendesign!
1.) You can add this on your custom.css or Quick CSS to define the active menu color:
#top .header_color .current-menu-item a {
color: red !important;
}
2.) What is the code you added to adjust the header height?
Cheers!
Ismael
Hey Ismael – found the solution for the active color.
As for the code added for header height –
#header_main .container, .main_menu ul:first-child > li a {
height: 300px !important;
line-height: 82px !important;
}
Hello!
2.) Replace the code with this:
#header_main .container {
height: 300px !important;
line-height: 82px !important;
}
Cheers!
Ismael
Ok, sweet. Will do.