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
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
Thank you Yigit. It works perfectly.