Making the page fixed width

Hi there,

Just wondering if there is an easy way to make the page fixed width.

Eg stop the size dynamically changing. I know I might have to get rid of the percentages in the css, but doing all of them will take a while… don’t suppose you know of an easy fix?

Cheers.

You can stop its responsive behavior by removing this line from header-extensions.php

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

It will be still responsive on desktop but it will show full width on all mobile devices. For desktop the only solution is to change all percent values but it is not like people are resizing browser when they actually use a web unless they are testing responsiveness, so removing above mentioned like should be enough.