Magento – Custom Theme Responsive/Mobile Disable and enable Full Site

custom-optionsmagento-1.9mobilemultistorerwd

Good Morning,

Our website has a custom theme by VenusThemes. I've looked through the guide or instructions to see if we could temporary disable the "mobile" side of theme to show only full site on both PC screen sizes and mobile devices. Not sure if its a theme feature or a Magento feature. At this point in the stage of our development i want to force full site mode for all devices. We will come back and revisit another alternative for a mobile site later on, so id rather disable it than remove it permanently so to speak.

How would i go about doing that? Please give detailed instructions if/as possible.

Our website is multi-store using one backend database. www.thepoultryhatchery.com

We are using Magento Community Edition 1.9

This is our theme –> http://www.venustheme.com/guides/ves_superstore/

Best Answer

The only way I can see this happening is to edit your css and remove all the media queries.

eg:

@media (min-width: 768px) { ....}

But exactly why one would want to do this is beyond me. Generally I would not visit any site on my mobile / tablet that only displays in full page view and isn't responsive.

So make sure you backup your css file(s) first, so you can replace them when you decide you want to have your responsive design back.

The media queries could be across a multiple of files. But as I do not know if your theme uses sass or less it is hard to tell as you've enabled css compression

Related Topic