Is it possible to disable responsivity in a certain page?

Posted in: Newspaper
Post count: 79

Hi,

Was wondering if there is a way to stop content in the main display area from wrapping to width and having horizontal scrollbar, on specific pages only.

I need this for a page like: http://www.ministryofrun.com/submissions/submit-a-race/

which if you access it on narrow screen, makes some columns move below and it doesn’t make much sense..

thanks

Post count: 6600

Hi,

You can do it using css and overwrite the page/container’s element width and height and make it fixed.
For what you are trying to do i suggest to try to find a solution on the web. I have found and tried something like this:

#go-pricing-table-race_pricing_table {
height: 100%;
overflow-y: scroll;
width: 100%;
overflow-x: scroll;
}

… but unfortunately this dose not work, because the table columns still slide one under the other. If you could find a way to stop this this css might work just like you want it..
Hope this helps!

Thanks

Post count: 79

thanks Lucian… it’s a start! If I get it right I will post it here for anybody else interested

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