Hide Floating Sidebar on Mobile Devices

The Add-On is using is_mobile(); php function which does not work on static caches where pages are created as static html files.

You can use custom CSS code below to hide the Floating Sidebar Add-on on mobile devices;

@media screen and (max-width:400px){
    #mashfs-main {
	display:none;
    }
}

Still need help? Contact Us Contact Us