Tagged: ,

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #509760

    The mobile menu menu items arrow icons look like taken from emoji list. How can we prevent the mobile menu small arrow icons to appear like emoji? And how is it possible to make them exactly as they were appearing before?

    #509975

    Hi L!

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

    #mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before {
    content: "\25BA";
    }

    Best regards,
    Yigit

    #512986

    Hello, same problem in the “Fullwidth Sub Menu”.

    And another question, how can ich change the Name “Menu” in the front page? In german is called “Menü”.
    Thanks
    genloc

    #513509

    Hey!

    Please try the solution provided above to fix the menu icon.

    Could you please provide a link to the page? Are you trying to translate one of the menu items?

    Best regards,
    Ismael

    #532143

    Little busy last time. Here is the link and a Screenshot
    In the second menu the arrows visible. I don’d know how it look on iOS 8, i think better.
    And: How can i change “Menu” to “Menü”?

    #532145

    Hey!

    Please update Enfold to the latest version 3.4.1 – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    #532239

    I did the update this week. It’s the same. Take a look.

    Regards
    genloc

    #533560

    Hi!

    can you provide us admin access, so we can take a closer look into it? post login details here as private reply.

    Best regards,
    Andy

    #533621

    ok, take a look

    #533646

    Hey!

    you are using a caching Plugin (WP Rocket), so go into plugin’s settings and choose to switch off caching. Afterwards deactivate this and all other plugins, clear browser cache and hard refresh a few times.

    Regards,
    Andy

    #533681

    Hi Andy,
    unfortunately, It does not help. I have the entire cache module uninstalled. But you know that it’s all about the sub-menu and not to the main menu? There are problems only on iOS 9. And the problems I had the problems with the sub-menu before the cache module, which is only a few weeks old.
    I’ll probably replace the Submenu against buttons. That’s not quite as charming but probably looks better.

    regards
    genloc

    #534004

    Hi!

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

    .responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before { 
    content: "\25BA";
    }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Regards,
    Yigit

    #534014

    Hi Yigit,
    thanks that works for me. five-star ***** answer ;-)
    One last question. how can i change the name “Menu” in the sub menu to local language “Menü”. See screen shot.
    regards
    genloc

    #534618

    Hey!

    EDIT: Disregard the previous code. I thought you haven’t fixed the issue. Regarding the “Menu” text, please edit config-templatebuilder > avia-shortcodes > menu.php file, look for this code around line 303:

    $mobile_button = $mobile == "active" ? "<a href='#' class='mobile_menu_toggle' ".av_icon_string('mobile_menu')."><span class='av-current-placeholder'>".__('Menu', 'avia_framework')."</span></a>" : "";
    

    Adjust the text.

    Try to replace the icon with a css triangle. Please remove the code in the Quick CSS field:

    .responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before {
        content: "";
    }

    .. replace it with:

    .responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        border-left: 3px solid #444444;
        position: absolute;
        top: 23px !important;
        bottom: auto;
    }

    Best regards,
    Ismael

    #534667

    Hey!
    Yes, that’s it!
    Thanks a lot
    genloc

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Mobile menu items icons in iOS9 look different’ is closed to new replies.