Search icon placement

Hi,

I am working on a website. Url is www.igt.ph/demo
I am using custom ubermenu on header. Issue is that search icon is misplaced somehow. It was fine earlier but after some updates it went wrong. Below is the css i added earlier suggested by you. But it guess its not working now.

.x-menu-item-search {
float: none;
display: inline-block;
vertical-align: top;
margin-top: 17px;
margin-left: 15px;
}

Can you please help me figure that out?

Thanks
Amit

Hi Amit,

You can try this code instead.

.ubermenu .x-menu-item.x-menu-item-search a {
    display: block;   
    padding: 15px 20px;
}

.ubermenu .x-menu-item.x-menu-item-search {
   float:left;
    margin: 5px;
}

Hope that helps

Thanks ! It worked…

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.