In https://kriesi.at/support/topic/centered-menu-items-search-and-cart-icons-on-the-right-hand-side/ topic Yigit fixed the issue with the website.
Is it possible for browser width <1400px no to cover these elements?
Thanks.
M
Hi Mariusz!
what do you mean? I can’t see that any elements get covered. Can you highlight using screenshots? so we can get a clear idea of what you need please? you can use imgur.com or dropbox.
Cheers!
Andy
Sure. There it is.
You can see that one icon covers another depend on the screen width.
Thanks.
Hi!
The icon is hidden because of this code:
<style id="__web-inspector-hide-shortcut-style__" type="text/css">
.__web-inspector-hide-shortcut__, .__web-inspector-hide-shortcut__ *, .__web-inspector-hidebefore-shortcut__::before, .__web-inspector-hideafter-shortcut__::after
{
visibility: hidden !important;
}
</style>
Do you know where it’s coming from? Try to add this in the Quick CSS field:
#top #menu-item-search.menu-item-search-dropdown>a {
visibility: visible !important;
}
Regards,
Ismael
Thanks Ismael.
I cannot find this web-inspector-hide-shortcut-style… Where did you find this in the code?
The code you suggested added.
But nothing chaned.
Thanks.
M
Hi!
It must have been added when I inspect the site. Anyway, please try this instead:
@media only screen and (max-width: 989px) {
.responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet #header_main .social_bookmarks, .responsive.html_mobile_menu_tablet #header_main_alternate {
display: block;
}
.av-main-nav > li {
line-height: 30px;
display: none;
}
.av-main-nav > #menu-item-search {
position: absolute;
display: block;
top: 0px;
right: 10%
}
}
@media only screen and (max-width: 786px) {
.av-main-nav > #menu-item-search {
top: -88px;
}
}
Remove browser cache then reload the page.
Best regards,
Ismael
Thank you :)
It seems not to display search icon <485px but I’ll fix it.
Thank you!