I am currently working on converting a non-responsive webpage into responsive. The issue I am facing is that right now there are only a handful of pages that are built to be responsive and dozens that aren't. For the pages that aren't I have added a class no-resp
to the body and set the container to a static 905px width for pages with that body class.
For the most part this has worked, however there are some issues with the navigation. The header and footer are coded mobile-first, so even with the static container width, the header is still displaying the navigation as if it were mobile.
Is it possible to force or fake a breakpoint so that, no matter what the screen size is, it will use the min-width:768px
breakpoint?