Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #285801

    Hi,
    in Enfold settings I enabled “Show sidebar on smartphones”. The sidebar is displayed below the content on my smartphone. Is there a possibility to show the sidebar above the content on mobiles?

    Regards,
    Gerald

    #285834

    Hey Gerald!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
      if (jQuery(window).width() <= 480){	
    	   jQuery("aside").prependTo("main");
      }
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Yigit

    #285873

    Thank you Yigit. It works perfectly.

    #285875

    Hey!

    Great! You are welcome! Let us know if you have any other questions or issues :)

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Sidebar on Smartphones above the content’ is closed to new replies.