The wrapper (only 130px wide) isn't wide enough to fit the 690px + padding wide content div. So it wraps to the next line. I found that increasing wrapper to 860px took care of this but messed up the look of the right edge, it wasn't a continuous line top to bottom. So I made the wrapper 850px, and made content's right padding 0, That made it all appear to fit.
What I did:
Code:
. . . .style20 {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #CCCCCC;
font-size: 14px;
font-style: italic;
}
#wrapper {
width:850px;
}
#content {
padding-right:0;
}
-->
</style>
</head>
<body>
<div id="header">
</div>
<div id="doodad">
<hr class="st . . .
This seemed fine in other browsers as well. You would probably want to make the change in your main styles though:
Code:
#wrapper {
width: 850px;
height: 507px;
margin-left: 20px;
background: #000000;
}
and:
Code:
#content {
width: 690px;
border: 0px;
height: 492px;
margin-left: 130px;
background-color: #000000;
padding: 0 0 15px 10px;
}
I just realized that for IE 6 (I was testing in 7), you also need to remove the p element from the footer and make the image it contains display:block;
Code:
<div id="footer">
<img style="display:block;" id="frontphoto" src="/images/footer1.jpg" width="850" height="40" />
</div>
This was still fine in other browsers.
Bookmarks