But being a perfectionist, I want to know what's up.
I have posted both my CSS file and relevant HTML here too. So please bear with me.
Here's what it looks like in Dreamweaver. Everything SEEMS fine.

And here's what it does in Safari/FF/IE. Notice that it looks like that black section is pushing up the title area:

My CSS:
[indent]@charset "UTF-8";
/* CSS Document */
a:link {
color: #83000B;
}
a:visited {
color: #a8a8a8;
}
a:hover {
color :c00010;
text-decoration: none;
}
a:active {
color: #a8a8a8;
}
body {
background: #FFFFFF;
text-align: left;
font-family:Arial, Helvetica, sans-serif;
font-size: 13px;
color:#000000;
}
#container {
width: 900px;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;
padding-top:0px;
position:relative;
top:-15px;
}
#title {
width: 900px;
height: 90px;
float:left;
}
#spacer {
height:10px;
width: 900px;
float: left;
}
#black {
width:900px;
height: 260px;
margin-top: 10px;
float:left;
}
#ads {
width:900px;
height:80px;
}
#content {
width: 710px;
float: left;
padding: 10px;
}
#right {
width: 170px;
float: left;
}
#bottom_ads {
width: 900px;
float:left;
height: 60px;
}
#footer_image {
width:900px;
height:30px;
float:left;
}
#footer_text {
width:900px;
height: 25px;
float:left;
}
[/indent]
And, my Body HTML:
[indent]<body>
<div id="container">
<div id="title"><img src="images/title.jpg" width="900" height="90" border="0" usemap="#Map" />
<map name="Map" id="Map"><area shape="rect" coords="534,12,890,46" href="#" /></map></div>
<div id="spacer"><img src="images/spacer.jpg" width="900" height="10" /></div>
<div id="black"><img src="images/blacksection.jpg" /></div>
<div id="ads">top ads</div>
<div id="content">
<h1>true song tech</h1>
<p>INDIANAPOLIS - August 5th, 2008</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="right">
<p>right side ads</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="bottom_ads">bottom ads</div>
<div id="footer_image"><img src="images/footer.jpg" width="900" height="30" /></div>
<div id="footer_text">
<div align="center"><br />
<a href="#">news</a> | <a href="#reviews">reviews</a> | <a href="#media">media</a> | <a href="#contact">contact</a> | <a href="#downloads">downloads</a><br />
<a href="#advertise_here">advertise here</a> | spread the word</div>
</div>
</div>
</body>[/indent]
Any help / fixes you know of would be GREATLY appreciated.
Thanks, P2L
MS
Edited by Live4Him2007, 05 August 2008 - 01:55 PM.
