As many of us realize, responsiveness in Muse can be a bitch.
But below you will find a simple technique for the desperate among us!
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
body{
overflow-x: hidden!important;
padding-bottom: 0;
max-height:0px;
}
#page{
transform-origin:0 0;
margin:0;
overflow:hidden;
}
</style>
<script>
var pageWidth;
function getPageWidth(){
pageWidth = $("#page").width();
}
function scalePage(){
var docWidth = $(window).width();
var scale = docWidth/pageWidth;
$("#page").css({
"transform":"scale("+scale+")"
});
console.log("page:"+pageWidth+" doc:"+docWidth);
}
$( document ).ready(function() {
getPageWidth();
scalePage();
});
$( window ).resize(function() {
getPageWidth()
scalePage();
});
</script>