On mousehover, the search button in my header highlights too much of the screen. is there any way to fix this so it matches the menu highlights?
For example, I’d like my search button to look like this: http://imgur.com/aWYzAjI
Instead, I get this: http://imgur.com/3DYWCwe
Any help would be appreciated!
Hey erusko!
Add this to your custom CSS.
#menu-item-search > a {
padding-left: 20px !important;
padding-right: 20px !important;
}
Regards,
Elliott
Thanks Elliot, that definitely widened things out. Is there any way to wrap the highlight around the search button to match the other menu links though?
Hi!
Try adding this.
#menu-item-search a {
line-height: 40px !important;
height: 40px !important;
top: 42px !important;
position: relative !important;
border-radius: 3px;
}
Best regards,
Elliott
thanks elliott! all fixed now!