Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #431164

    Hello Guys,

    On this site the mobile hamburger menu doesn’t show if there is a iframe in the page. I sent a page with a iframe and a picture of it on Iphone.

    Greets!

    Tim

    #431433

    I already deactivated all the plugins but nothing chance..

    #432041

    Hi!

    Thank you for using Enfold.

    How did you add the iframe? What’s the code? Please post it on pastebin.com. If it is from a third party plugin, please contact the plugin author for further help. Did you add any modifications in the child theme?

    Regards,
    Ismael

    #432721
    This reply has been marked as private.
    #432756
    This reply has been marked as private.
    #434105

    Hey!

    Your mobile menu is set to display: none;
    Use this code:

    @media only screen and (max-width: 767px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block !important;
    }}
    

    Hope this helps!

    Cheers!
    Andy

    #434306
    This reply has been marked as private.
    #434598

    Hi!

    Please post the code in pastebin.com. What happens when you remove this line?

    <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js” type=”text/javascript”><script src=”//www.hypotheekbond.nl/javascript/original/f1_external.js” type=”text/javascript”>
    

    then place this in functions.php:

    add_action( 'wp_enqueue_scripts', 'ava_custom_enqueue_scripts' );
    function ava_custom_enqueue_scripts() {
    	wp_register_script( 'f1-external', 'http://www.hypotheekbond.nl/javascript/original/f1_external.js');
    	wp_register_script( 'ajax-jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js');
    	wp_enqueue_script( 'f1-external', 'http://www.hypotheekbond.nl/javascript/original/f1_external.js', array('jquery'), '1.0.0', true );
    	wp_enqueue_script( 'ajax-jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js', array('jquery'), '1.0.0', true );	
    }

    Best regards,
    Ismael

    #436555
    This reply has been marked as private.
Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘mobile hamburger menu doesn't show with iframe’ is closed to new replies.