Viewing 26 posts - 1 through 26 (of 26 total)
  • Author
    Posts
  • #852447

    Hi
    I use the mega menu. Unfortunately it doesen’t show the submenu on the mobile. Can you help please? See the login in the private content.
    The Icon «burger» and the «search» is on the mobile is exactly on the picture. Is it possible to place these more up.
    Thanks for your help.
    naryskina

    #852828

    Hey naryskina,

    Thanks for the login details, though we need a URL as well please.

    Best regards,
    Rikard

    #852831

    Sorry, yes of course:)

    #853277

    Hi,

    The link posted above does not seem to work for me. Can you please check again?

    Best regards,
    Jordan Shannon

    #853341

    hi
    I have check up. The access to the server is free again. Please try again. The link is okay.
    Thanks

    #853984

    Hi,

    For Sub Menu Items Mega Menu Not Showing On Mobile Version,
    many have found that when using the “#” symbol to make no links in the main column of the menu. Removing the “#” symbol and entering “https: //” fixed it.

    Best regards,
    Jordan Shannon

    #854670

    thanks. I don’t understand exactly what you mean. I do not use the symbol “#” . I have already fix it. But it doesn’t show the submenu on mobile.
    best regards
    naryskina

    #855064

    Hi naryskina,

    Here is the code to move the menu, you can put it in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
    .main_menu .avia-menu.av-main-nav-wrap {
        margin-top: 0px!important;
    }
    .responsive #top #header_main > .container .main_menu .av-main-nav > li > a,
     .responsive #top #wrap_all .av-logo-container {
        height: 80px!important;
        line-height: 80px!important;
    }
    }
    

    Credentials did not work for me. Could you please update the credentials.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #855295

    thanks
    I have put the code in my child theme and in the Quick Css. But there is no change on the mobile. Please
    see the credentials in the private content.

    P.S. I use the child theme because I’dont want to lose the changes at a update.

    • This reply was modified 7 years, 1 month ago by Soyala.
    #855429

    Hi naryskina,

    I see you have a header.php file in your child theme. have you updated it with the new one?

    Best regards,
    Victoria

    #855434

    Hi Victoria

    No, I don’t have. I put the header.php file in the child-theme folder, because, it seemed to me the only possibility, to place the meta tag of google-site-verification.

    best regards
    naryskina

    #855793

    Hi naryskina,

    You need to put there the fresh copy of the file and add the code you need there as well.

    Best regards,
    Victoria

    #855830

    Hi Victoria
    thank you, i will customize it. Please, can you Show me, wehre can I adjust the Submenu for the mobile Version. I see the “#” Symbol in the Source Code but i can’t find it in the menu under main column to fix the link.

    Best regards
    Naryskina

    #856308

    Hi,

    The mega menu columns are not displaying because they are empty. Please do not use the mega menu columns as actual menu items, only use the columns to separate menu items in the mega menu. You have to add sub menu items in each column or disable the mega menu.

    Best regards,
    Ismael

    #859510

    Hi
    So that the navigation remains user-friendly I have tried an other way who is valid. For the Desktop und Ipad it works fine.
    When I choose in the theme «dispaly submenu items on click» there is no reaction on the mobile phone. The two other functions works.
    Please see the screenshot how I set the menu.

    I have also tried this version “http:// #” but on the android device appears “a what about blank site” however on the iphone it worked well.
    The customer would like to have the first function on the mobile. The plugins I have already deactivated and tested without success

    Have yout got any idea how to get it?

    Best regards
    naryskina

    #859563

    Hi,

    Did you try to disable the “mega menu” option? Again, mega menu columns that are empty or those that do not contain sub menu items will not be displayed on mobile view. I would like to access the dashboard but the login credentials above are not working. Please check.

    Best regards,
    Ismael

    #859796

    Hi
    Yes, i have tried, without success. I also looked at the tutorial on your websit. Mabey I do not understand what you mean. The login is active again.
    Thanks,
    Naryskina

    #859985

    Hi,

    I have tried to access your dashboard, but it isn`t working. Can you check it and send updated credentials to us?

    Best regards,
    John Torvik

    #860084

    Hi
    I have tasted it also on mi iPhone. It Works.
    Please Text again with this Data.
    Thanks

    #860422

    Hi,

    Thank you for the info.

    We added another hash tag in the parent menu items’ URL field to fix the issue temporarily. An actual fix is going to be included in the latest version of the theme. Please don’t forget to remove the browser cache or hard refresh before checking the page.

    Best regards,
    Ismael

    #861070

    Hi
    Great! Thank you so much!
    I have activated under Menu Items for Mobile (browser width below 990px).
    I have adapted the menu with the main-nav-wrap, to get a better harmony between logo and navigation.
    The Hamburger Menu Icon on the Ipad is because of the adjustment too far down.

    I can not overwrite the customization. Can you help me please?
    For the Iphone i could adjust it.
    Many thanks.
    Naryskina

    this is the latest version i tried in the quick css.

    
    /* --------------------Ipad to  Portrait Size (devices and browsers)--------------------*/
    @media only screen and (max-width: 767px)  {
    
    .avia-menu.av-main-nav-wrap  {
       margin- top: -60px;
    }
    }
    #861263

    Hi,

    Look for the previous css menu modification. Wrap it inside the following css media query so that it only affects the desktop view.

    @media only screen and (min-width: 989px) {
      /* Add your Desktop Styles here */
    
    }

    Best regards,
    Ismael

    #861389

    Hi
    Thank you very much. This helps perfect. Please, may I ask you which media queris I need for the ipad portrait size, that I can the symbol adjust.
    I have tried this code but it does not react.

    /* ——————–Tablet Portrait size to standard 960 (devices and browsers)——————–*/

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    
    i.fa.fa-caret-down {
        float: right;
    }
    .html_av-submenu-hidden .av-submenu-indicator {
        display: none;
    }
    	}

    Many thanks
    naryskina

    #861781

    Hi,

    You can use the following css media query.

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : portrait) { 
        /* STYLES GO HERE */ 
    }
    

    Best regards,
    Ismael

    #861786

    Hi
    Thank you for your professional help. This helps! Now everything is in order.
    It would interest me, why this code works only in the Quick CSS and not in childtheme css file.
    Best regards,
    Naryskina

    #862026

    Hi,

    Is it possible that you could have a css error in the childtheme css file. It could be stopping subsequent css from being interpreted.

    Best regards,
    Jordan Shannon

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