Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1314898

    Hey guys,

    according to this and this really helping posts I achieved that the social media icons and the search box is in my mobile tablet & smartphone menu. Yes :)

    But there are some problems and I cant find solutions:
    #1 The social media icons appears on the mobile header too but only so long if I dont klick on the burger menu to open it. After this click the social media icons disappear in the mobile header and appears in the burger menu. When I close the burger menu again the social media icons are still disappeared in the mobile header. That effect appears only before the first click on the burger menu.
    #2 I want to deactivate Ajax suggests for the search box – how can I do that?
    #3 I have a lack between display size 990px and 1007px: in this range it shows the search box in the header (it shouldnt) and the burger menu wont show anymore. I want to show the burger menu till 1007px.

    Maybe you can help me? I give you the login details to test it by yourself.

    • This topic was modified 3 years, 1 month ago by coolicious.
    #1315120

    Hey coolicious,
    Thank you for the link to your site,
    #1 For mobile (425px) the social icons do not show as default, for tablet (768px) they do, but you have quite a few of them that push the burger menu and your 3 extra menu icons over on top of your logo, so perhaps you would like to hide the social icons until 1007px?

    @media only screen and (min-width: 767px) and (max-width: 1007px) { 
    	#top #header_main .main_menu > .social_bookmarks.icon_count_7 {
    		display: none;
    	}
    }

    The reason they disappear when the menu is clicked is because the script is moving the icons to the new location.
    #2 To deactivate Ajax suggests, please see this post.
    #3 to hide the search and show the burger menu between 767px ▸ 1007px, try this css:

    @media only screen and (min-width: 767px) and (max-width: 1007px) { 
    	#menu-item-42751 {
    		display: none;
    	}
    	.responsive #top .av_mobile_menu_tablet #avia-menu.av-main-nav .menu-item-avia-special {
    		display: block;
    	}
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1315170

    Super nice, thank you!

    But now I have one another problem. When the display size is for instance 722px in the width my “extra tablet menu” (look at my three navigation links at the top) wont go under the burger menu when I open the burger menu. I want it that when the burger menu is open the three navigation links should be one level under the burger menu.

    You know what I mean?

    #1315179

    Hi,
    Thanks for the feedback, please try adding this css:

    @media only screen and (min-width: 641px) and (max-width: 1007px) {
    .av-burger-menu-main.menu-item-avia-special,
    .av-burger-menu-main.menu-item-avia-special:hover {
    	z-index: 110;
    	position: relative;
    }
    .av-main-nav {
        z-index: unset;
    }
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    #1315181

    Really nice, thank you! Im happy and you can close this thread :)

    Maybe you can help me with this one too?

    #1315819

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Problems after putting social media icons & search box in the mobile menu’ is closed to new replies.