Freakin Nevermind

I could just delete the last post, but instead I’ll reply to it in the form of another post. I was able to modify the stylesheet so that IE seems to like the page when the screen size is small. Now, for anyone who might be searching on what I did, here’s the solution:

The old style causing the problem appeared as this:
#content
{
display: block;
margin: 0 195px 20px 195px;
padding: 1em;
padding-top: 10px;
text-align: left;
background: #FFF;
}

The fix appears to have been to change the display tag to inline-block. The resulting style now looks like this:
#content
{
display: inline-block;
margin: 0 195px 20px 195px;
padding: 1em;
padding-top: 10px;
text-align: left;
background: #FFF;
}

According to the page I found about the display tag at Quirksmode.org this shouldn’t really be working quite right in Internet Explorer. I’ve tested it, though, and it’s working how I want it. Also, it says it is not supported in Firefox 1.5, but really, you should have upgraded by now.

And that is how I saved the world fixed my webpage.

Leave a Reply