htmlcssfixed-widthpage-layout

Viewing fixed page layout on mobile devices


I am using fixed page layout of my website (http://www.oatmeeel.com). It works fine on desktop browsers but not on mobile devices. The website is scaled to fit the browser but the format of some components change. Help please? Thank you!


Solution

  • Convert all you fix width Containers to percentage. You anyhow want you website to fit to screen. So, instead of using the

    width: 1442.88px;
    

    which you are using. Covert this to 100%. And also, create percentage layout (fluid layout) for the website. You might also need to use "media queries" to rearrange the elements if needed.

    Look for these two terms:

    Percentage Layout(Fluid Layout) & Media Queries.

    You'll be on your way to fix the issue you are facing. Still if you want any specifics, let me know.