• Let me say, I like this theme, but my frustration with your support is really making it very unappealing at the moment. I’m told that I need to pay $30 if I want to get support. I’m going to give this a try.

    https://www.david4natomas.com …. site looks great on PC but when you go to mobile, the sidebars to not show up on iPhone at all, and on Android only if the phone is in landscape mode. There is NO documentation for this theme anywhere.

Viewing 1 replies (of 1 total)
  • There is this #sidebar display:none !important, and also #main width:100% !important going on here, look at line#220 @media only screen and (max-width: 685px).
    https://themes.trac.www.ads-software.com/browser/melos/1.0.10/styles/style-responsive.css#L220

    So basically theme wants to get rid of sidebar in smallscreen view. Since this theme is build on one of those Page Builder things so maybe this is just one figuration. There might be other configuration that will keep sidebar in smallscreen view.

    However this code below when used in Custom CSS section if theme provided (or via Custom CSS plugin) will fix it for you.

    @media only screen and (max-width: 685px) {
    	#content #sidebar {
    		display: block !important;
    		width: 100%;
    	}
    	.layout-sidebar-right #sidebar #sidebar-core {
    		margin-left: 0;
    	}
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Widgets not visible in mobile’ is closed to new replies.