Disable mobile layout

Posted in: Newspaper
Post count: 16

What is the best method that can be used to make the site appear on a phone exactly as it does on a PC? I tried commenting out viewport in the header.php and that worked for 90% of things but a few of my widgets show much differently on a PC then they do on a mobile – http://www.gadgetfriendly.net

If possible I would like the ‘featured news’ area at the bottom to extend across horizontally like seen on the PC and also for The ‘Top rated’ section to show regular size icons instead of super mini ones.

Thanks!

Post count: 9544

Probably need to hire a developer to do that kind of customization for you.

Post count: 16

Oh man I thought it would be easier then that to disable a mobile theme – kinda sucks if were forced into it

Post count: 7909

Hi,

Unfortunately you will need custom modifications to disable mobile version as the Newspaper theme was designed with an fixed grid layout, responsive as it is fluid and style for desktop/tables/mobile screens.

You can try this custom css for Top Rated section if you like:
-for phone screen: http://screencast.com/t/YSK0A1LJm5Ju

@media (max-width: 768px){
.aps-wd-products li {
width: inherit !important;
float: none;
}
}

-for tablets: http://screencast.com/t/q6afyieM

@media (min-width: 768px) and (max-width: 1018px){
.aps-wd-products li {
width: inherit !important;
}
}

Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.