Viewing 27 posts - 1 through 27 (of 27 total)
  • Author
    Posts
  • #330760

    Hi, as you can see here – https://trello-attachments.s3.amazonaws.com/5429ce7e717fdf8b6ff5a47b/1106×166/282029d5be84b7bdea2d1baaaa9dd619/2014-10-06_1133.png

    There are some cases that the menu goes over the logo. Is there a way to prevent this from happening?

    #330763

    Hi bakbek!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 1140px) {
    .av-main-nav > li > a { padding: 0 8px; }}

    Best regards,
    Yigit

    #331457

    Doesn’t seem like it worked – http://screencast.com/t/KI8uAoqS6eg

    #331460

    Also, in the screenshot above you can also see that the social icons are missing for some reason.

    Here is another screenshot with the social icons – http://screencast.com/t/abfMiSIceo

    Is there an option to make the social icons only appear on desktop and not show on mobile/tablet? That will create more room for the menu and can reduce the chances of the menu overlapping the logo.

    #331695

    Hi!

    Please try following code instead

    @media only screen and (max-width: 1140px) {
    .av-main-nav > li > a { padding: 0 6px; }}

    You may need to adjust the value.
    Have you tried checking your website on an actual tablet?

    Best regards,
    Yigit

    #331727

    Yeah, I did. Seems that on this specific page it doesn’t work and the menu is still overlapping the logo – http://polytown.co.il/twinmotion/

    #331732

    Hey!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 1140px) {
    .av-main-nav > li > a > span.avia-menu-text {
    font-size: 14px;
    }}

    Cheers!
    Yigit

    #331737

    Still no go. I think it will be best to remove the social icons (if possible) or just make the menu appear as a mobile menu.

    #332458

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 1240px) {
    #header_main nav .social_bookmarks {
    display: none;
    }}

    Regards,
    Yigit

    #332770

    Seems better but on one page it still goes over the menu a little when watching on Tablet Landscape -http://screencast.com/t/iDN22q35S3D

    #333018

    Hey!

    Adjust the font size as well:

    @media only screen and (max-width: 1240px) {
    #top #header .av-main-nav > li > a {
    font-size: 16px;
    }
    }

    Please go to Enfold > Header > Mobile Menu panel. Select the Tablet or the second option on the Header Mobile Menu activation setting.

    Cheers!
    Ismael

    #334575

    I am having a similar issue and have tried many of your css codes with no luck. My menu is hiding under the logo. http://www.stlouisdj.com

    #334584

    I too am having the same issue. I’ve tried a few of the codes your team has posted on this thread and this one too, but nothing has solved all of the issues.

    The header is fine at 1140px wide and larger. Smaller than that, the menu begins overlapping with the logo. At approximately 767 pixels wide, the menu switches to the mobile menu which solves the issue. But then, as I downsize further, there’s a point at which the logo becomes distorted. I used some of the code provided in a thread so it’s no longer distorted, but it’s pushed down in the header and not properly vertically positioned.

    #334585
    This reply has been marked as private.
    #334594

    Hey @absmith55!

    Try selecting this setting – http://i.imgur.com/m7h3XKt.png

    Best regards,
    Josue

    #334610

    I have tried that too with no luck.

    #334611

    Hey @apremierdj!

    Try reducing your logo size a little bit, add this to Quick CSS:

    #top .logo a img {
        width: 320px;
        height: auto;
        top: 28px;
    }

    Best regards,
    Josue

    #334887

    Hi Josue. I’ve already switched that setting (activate for smartphones & tablets). It helped “turn on” the mobile menu for a slightly larger window dimension, but there’s still a range of window dimensions (about 768px to 1140px) where the traditional menu overlaps.

    Then I’m having that second issue where the logo is a problem once the window is small enough for smartphone. The logo was being distorted, so I tried some code that your team posted, but now the logo is being pushed down and isn’t properly vertically aligned. This is the code I used for that particular issue:

    @media only screen and (max-width: 479px) {
    #wrap_all .logo img {top: 35px; height: 45px !important;}
    #wrap_all .second-logo img {top: 0px;}}

    #335109

    Unfortunately that code did not work well either. Reducing the logo size does help but I would rather not go that route of making it too small

    #335943

    Does anyone have any further suggestions?

    #335995

    Hi!

    Unfortunately the only real solution is using a smaller logo or less menu items (if you must keep the same layout). Ultimately, the layout conforms to the content *or* the content conforms to the layout.

    Best regards,
    Devin

    #336294

    Thank you, but isn’t there something that tells the menu when to switch to mobile menu mode? Once the menu starts to overlap switch to mobile menu.

    Also, I’ve made the logo smaller but is not centered with the menu items. Is there a quick css way to center the logo with the menu items?

    #336359

    Hey!

    Try with this code instead:

    @media only screen and (min-width: 767px) {
    	.logo a img {
    		width: 350px;
    		height: auto;
    	}
    	.logo a img{
    		top: 22px;
    	}
    	.header-scrolled .logo a img{
    		top:0;
    	}
    }
    @media only screen and (max-width: 1024px) {
    	.html_mobile_menu_tablet .main_menu , .html_mobile_menu_tablet #header_main_alternate{display:none;}
    	.html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide{display:block;}
    	.html_mobile_menu_tablet #mobile-advanced{display:block;}
    }

    Best regards,
    Josue

    #336388

    Almost there. Is there anyways to space out the the menu from the logo?

    #336415

    Add this:

    .av-main-nav > li > a {
        padding: 0 10px;
    }

    Cheers!
    Josue

    #336433

    That didn’t work

    #336462

    Hey!

    There is a missing closing “}” in the Quick CSS code, try fixing that first.

    Regards,
    Josue

Viewing 27 posts - 1 through 27 (of 27 total)
  • You must be logged in to reply to this topic.