Hello ,
I’ve been trying to increase the size of the search icon magnifying box that is displayed on the right of my main menu bar. I’ve tried putting the code posted in several posts into the quick css but nothing seems to make any changes. I’ve tried refreshing and clearing cache but with no effect. The code I’m trying at the moment is:
/*Make the search menu icon bigger*/
#top .menu-item-search-dropdown > a {
font-size: 35px;
}
Thanks in advance
Jim
Hey j-keogh,
Try using this code:
#top #menu-item-search > a:before {
font-size: 24px;
}
Or this one if it doesn’t work:
#top #menu-item-search > a:before {
font-size: 24px !important;
}
Just adjust the font-size value as you see fit :)
Best regards,
Nikko
yay! thanks a lot Nikko