Skip to content Skip to sidebar Skip to footer

Unable To Force Website To Fit To Screen Width

I can't make my website fit to the screen. I don't know what is resisting my max-width 100% rules across all the higher level divs. I don't really use fixed widths for the most p

Solution 1:

I think the most apparent problem here is the use of display: table excessively even on objects that didn't need to be displayed as a table.

For your <div id="page">:

display: block !important;

For your <div id="main">:

display: block !important;
width: calc(100% - 40px) !important;

For your <div id="super-content">:

display: block !important;

Post a Comment for "Unable To Force Website To Fit To Screen Width"