okay that was a bit hard. oh I think this is what your main problem was. when you start adding styles to your page before you go any farther with anything make sure everything you add styles to; add their possition first.
that is the first thing you must do.I think I fixed your page but don't add position to to anything else I was able to fix it with out having to mess with your code to much.
you should also use
top down right and left more then using margin when ever you can
Code:
<style type="text/css">
body, html{
background-color: #000;
background-image: url();
}
div, p{
font-size: 1em;
font-family: "Georgia";
color: #000;
background-color: #fff;
}
#logo{
background-color: #fff;
background-image: url();
}
#navigation{
background-color: #fff;
background-image: url();
}
#lcol, #rcol{
background-color: #fff;
background-image: url();
}
#colbottom{
background-color: #fff;
background-image:
url('foot2.png');
}
#top{
background-color: #fff;
background-image:
url('foot2.png')
background-repeat: none;
}
/* link formatting */
a:link{
text-decoration: underline;
color: #000;
background-color: #fff; }
a:visited{
text-decoration: underline;
color: #000;
background-color: #fff; }
a:hover{
text-decoration: underline;
color: #000;
background-color: #fff; }
a:active{
text-decoration: underline;
color: #000;
background-color: #fff; }
/* Structure */
#container{
background-color: #fff;
left: 0%;
margin-left: 154px;
width: 706px;
z-index: 1;
position: absolute;
top: 100px;
}
#logo{
left: 50%;
width: 700px;
z-index: 2;
}
#navigation{
left: 50%;
width: 700px;
z-index: 2;
padding: 3px;
}
#lcol{
float: left;
width: 226px;
z-index: 2;
overflow: auto;
padding: 2px;
}
#rcol{
float: right;
width: 428px;
z-index: 2;
overflow: auto;
border-left: 2px double;
}
#colbottom{
width: 600px;
margin-left: -8px;
z-index: 2;
}
#top{
width: 619px;
margin-left:-6px;
z-index: 2;
position: absolute;
top: -47px;
}
#imggal{
float: none;
width: 690px;
z-index: 2;
padding-left: 5px;
padding-right: 5px;
border-left: 0px double #fff;
}
/* Various Tags */
#logo .img{
background-color: #fff;
border: 0px solid #000;
}
#rcol .img{
border: 5px solid #fff;
}
img.me(
width: 100px;
height: 133px;
vertical-align: middle;
)
</style>
Bookmarks