I have scoured the internet trying to figure out how to do that, but never could figure it out... and I have IE 8. So either something is wrong with IE or my coding... here is the css code:
Code:
<style type="text/css">
body {
background: #0039E6;
color: #33FFFF;
}
a {
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
#main {
margin-left: auto;
margin-right: auto;
width: 750px;
height: 726px;
border: solid 1px black;
background: #33FFFF;
}
#banner {
margin-left: auto;
margin-right: auto;
width: 700px;
height: 150px;
border: solid 1px black;
background-image: url('images/banner.png');
}
#sidebar {
float: left;
margin-left: auto;
width: 238px;
height: 445px;
padding: 5px;
border: solid 1px black;
background: #0039E6;
}
#content {
float: right;
margin-right: auto;
width: 418px;
height: 445px;
padding: 5px;
border: solid 1px black;
background: #0039E6;
}
#marquee {
border: 1px solid black;
margin-left: auto;
margin-right: auto;
background: #0039E6;
width: 692px;
height: 20px;
margin-left: 23px;
padding: 5px;
}
</style>
although it doesn't look right in google chrome now after I tried to figure the problem out on my own....