I'm trying to make a little wordpress theme and don't know what I'm doing wrong. I want to have 2 sidebars with a bunch of text in them on the left and right, then a main content section in the middle. For some reason, it looks fine on Firefox and Chrome, but crap in Safari. I'm assuming it's also crap in IE. Here's the URL: http://oscarssuck.beforethecubicle.com/
The basic css I've got for the 3 divs is:
I put the two sidebars first in the page, followed by the content.
Any idea what I'm doing wrong?
The basic css I've got for the 3 divs is:
Code:
#sidebar{
color:gray;
float:left;
width:18%;
background-image:url('images/sidebarbg.png');
border:gray 1px solid;
margin:5px;
padding:5px;
font-family:arial;
font-size:x-small;
}
#sidebar2{
color:gray;
float:right;
width:18%;
background-image:url('images/sidebarbg.png');
border:gray 1px solid;
margin:5px;
padding:5px;
font-family:arial;
font-size:x-small;
}
div#content{
width:50%;
min-height:397px;
background-image:url('images/sidebarbg.png');
border:gray 1px solid;
padding:5px;
}
Any idea what I'm doing wrong?
Last edited by a moderator: