I am currently working on my website and facing a layout issue.
In desktop mode, there is a sidebar, but in mobile view, the sidebar goes down under the content displayed on the left side.
I would like the sidebar to appear at the top in mobile view, followed by the content. I have tried using position:absolute;
and adjusting margins without success.
If you have suggestions on how to achieve this, please let me know.
You can also view my code on jsFiddle: here
The following script has worked for me:
<script type="text/javascript>
var windowWidth = $(window).width();
if(windowWidth <=767){
$('.wf-span-4').insertBefore('.wf-span-8');
}
</script>