-
AuthorPosts
-
September 10, 2018 at 3:10 pm #1007941
Hello Enfold Support,
as first thing I really want to congratulate with you all for the amazing support and theme, you guys rock!
I went through all the problems with other support threads successfully, but i can’t really go further at solving my problem:
as mentioned above my current issue is the Menu. It is overlapping the logo whenever the browser window is larger than 1086 px.I already read all the threads about that issue but nothing has worked properly. I tryed to add this code in the Quick CSS but it didn’t work at all:
/* Activate burger menu */ @media only screen and (max-width: 1550px) { #top #header .av-main-nav > li.menu-item { display: none!important; } #top #header .av-burger-menu-main { cursor: pointer; display: block!important; }}
I would like to use Mobile Menu up to 1550 px wide.
Please find in the private content area my login credentials in case they may be of help.
Thanks in advance,
Fabio
- This topic was modified 6 years, 2 months ago by Rikard.
September 11, 2018 at 7:03 am #1008201Hey Fabio,
Please try the following in Quick CSS under Enfold->General Styling to activated the mobile menu on an earlier stage:
@media only screen and (max-width: 1385px) { nav.main_menu { display: block !important; } #avia-menu .menu-item { display: none; } .av-burger-menu-main.menu-item-avia-special { display: block; } }
Best regards,
RikardSeptember 11, 2018 at 10:02 am #1008294Hey Rikard,
thanks for your code, it worked like a charm!
I’m so sorry to bother you again but I’m facing a new issue:
I added “MENU” text near the MENU button on mobile. I would like to show up the search icon on the left of the word “MENU”. Unluckily the search icon box overlay the text and it isn’t clickable at all (link 1 and link 2).
I would also love to know if it’s possible to show the big Search Icon up to the max resolution set on the mobile menu (it disappear when the browser window is wider than 1087 px – link 3).
The Quick CSS I’m using:
@media only screen and (max-width: 1385px) { nav.main_menu { display: block !important; } #avia-menu .menu-item { display: none; } .av-burger-menu-main.menu-item-avia-special { display: block; } } @media only screen and (min-width: 435px) { .av-hamburger strong { display: block; position: absolute; left: -115px; top: -42px; text-transform: uppercase; font-size: 34px; }}
Please find in the private content area the screenshots of this issue.
Thank you very much in advance for your time and help, I really appreciate!
Fabio
- This reply was modified 6 years, 2 months ago by MontanariGiulio.
September 12, 2018 at 8:06 am #1008783Hi,
Thanks for the update.
You can use this css code to adjust the search icon’s position.
#top #menu-item-search { right: 80px; }
And this css media query to adjust it even more on smaller screens.
@media only screen and (max-width: 480px) { #top #menu-item-search { right: 10px; } }
Screenshot: https://imgur.com/a/NMGxfaE
Best regards,
IsmaelSeptember 12, 2018 at 10:35 am #1008827Hi Ismael,
thanks for your help! I had some issues with overlays but after some tweaks, it’s just working fine! I also managed to add the Search Icon when the burger menu is visible. I quote the code in case it may be of help :-)
@media only screen and (max-width: 1385px) { nav.main_menu { display: block !important; } #avia-menu .menu-item { display: none; } .av-burger-menu-main.menu-item-avia-special { display: block; } } @media only screen and (min-width: 435px) { .av-hamburger strong { display: block; position: absolute; left: -115px; top: -42px; text-transform: uppercase; font-size: 34px; }} @media screen and (max-width: 1380px) and (min-width: 490px) { #top #menu-item-search { display: block !important; right: 80px; }} @media screen and (max-width: 491px) and (min-width: 435px) { #top #menu-item-search { display: none; } }
I have the really last question to ask you: how can i set the burger word “MENU” in a responsive way?
Let me explain better: when I scroll down the browser window (between the resolution range 1090 px – 1523 px) the word “MENU” is not responsive, it just sticks at the top. It doesn’t align with other elements like Search Icon and Menu Icon. I tried to change the position values but nothing changed.Please find the screenshotted issue on the private content area.
This is the code I’m currently using:
@media only screen and (min-width: 435px) { .av-hamburger strong { display: block; position: absolute; left: -115px; top: -42px; text-transform: uppercase; font-size: 34px; }}
Sorry to bother you again and thanks in advance for your time.
Fabio
- This reply was modified 6 years, 2 months ago by MontanariGiulio.
September 13, 2018 at 4:36 am #1009189Hi,
Thanks for the update. I can’t reproduce that issue on my end. The “MENU” text displays when the screen width is less than 1385px and it seems to align properly with the mobile menu icon.
// https://imgur.com/a/PDogIiP
Best regards,
IsmaelSeptember 13, 2018 at 8:48 am #1009272Hey Ismael,
thanks for your reply!
The “MENU” text is aligned properly with the mobile menu icon only when the site is not scrolled down as you noticed. The issue appears when it comes to the scroll down: the “MENU” text doesn’t follow the natural positioning and resizing of the header (please find the screenshot of the issue linked in the private content area).
Thanks again for your time and patience!
Regards,
Fabio
September 14, 2018 at 3:42 am #1009768Hi,
I see. You can include this css code inside the css media query with the (min-width: 435px) breakpoint.
.header-scrolled .av-hamburger strong { top: -20px; }
Put it below the existing “.av-hamburger strong” css modification.
Best regards,
IsmaelSeptember 14, 2018 at 8:38 am #1009819Hi Ismael,
it works like a charm!
Thanks again for your work and patience.
As the issue has been solved the topic can be closed :-)
Best regards,
Fabio
September 15, 2018 at 7:15 am #1009994 -
AuthorPosts
- The topic ‘Menu Labels overlay logo’ is closed to new replies.