cczernia
10-22-2007, 12:07 PM
I redesigning some elements in wordpress and created a three column layout using divs. However, the last column disappears in IE6 and I can't figure out how to bring it back. Here is the main CSS for the disappearing column. Note that I added height: 1% and display: inline as possible bug fixes (with variations of using one or the other) and it didn't fix it.
Page link (http://www.triodisplay.com/press/category/jeffs-retail-blog/)
CSS link (http://www.triodisplay.com/press/wp-content/themes/classic/style.css)
#jeffbar {
position:relative;
width: 200px;
float: left;
display: inline;
height: 1%;
color: #666666;
margin-top: 25px;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #666666;
padding-left: 7px;
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}
Second column CSS that overrides the CSS in style.css (found in the main page)
#content {
width: 420px;
position:relative;
float: left;
}
Page link (http://www.triodisplay.com/press/category/jeffs-retail-blog/)
CSS link (http://www.triodisplay.com/press/wp-content/themes/classic/style.css)
#jeffbar {
position:relative;
width: 200px;
float: left;
display: inline;
height: 1%;
color: #666666;
margin-top: 25px;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #666666;
padding-left: 7px;
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}
Second column CSS that overrides the CSS in style.css (found in the main page)
#content {
width: 420px;
position:relative;
float: left;
}