Hi- Love this theme! I have been monkeying for a long time with something simple and I can’t get it. http://grab.by/sIT4 —-this screenshot shows the last menu item with the wrong padding on the right side. I tried to put the right padding in there with this css:
#top .main_menu .menu > li:last-child > a {
{
padding-right:13px !important;
padding-left:13px !important;
}
It didn’t work. What css would I use to make sure the on hover background color appears the same width/with the same padding, on both sides?
Thanks!
Angie
Hey Angiec13!
Please remove the css modification that you added. Use this instead:
#top .main_menu .menu li:hover {
background: red;
}
Regards,
Ismael
Hi!
The last child on the menu has its padding removed. You can change that with:
#top .main_menu .menu>li:last-child>a {
padding-right: 0;
}
Best regards,
Devin
Thanks- that worked! :)