Cross-browser CSS problem
Posted: Fri Sep 16, 2005 1:14 am
Hi,
I've decided to start building a web-site in CMS Made Simple after all & it sure is simple!
But cross-browser CSS is always a challenge... I haven't been able to find out why the bottom border of the footer of this site: www.kisima.org/cmsmadesimple stretches out on the sides in IE. In Firefox it works perfectly and the border is hidden behind the corner images.
What have I missed?
The HTML for the footer is:
And the relevant CSS:
A minor thing is the white space below the image above the menu in IE. There should be no white space and there is none in FF...
Thanks!
I've decided to start building a web-site in CMS Made Simple after all & it sure is simple!
What have I missed?
The HTML for the footer is:
Code: Select all
<div class="bottom">
<img class="bottomleft" src="images/bottomleft.gif" alt=" " width="33" height="38" />
<img class="bottomright" src="images/bottomright.gif" alt=" " width="33" height="38" />
Powered by CMS Made Simple {cms_version}<br />
Think you've found a bug? <a href="http://bugs.cmsmadesimple.org">Report</a> it.
</div>Code: Select all
div.bottom {
background-color: #781c12;
border-bottom: 3px solid #44100B;
border-top: 3px solid #44100B;
padding: 0px;
text-align: center;
font-size: 11;
position: relative;
clear: both;
height: 32px;
\height: 32px;
h\eight: 26px;
}
.bottomleft {
float: left;
clear: both;
margin: -3px 0px 0px 0px;
\margin: -3px 0px -3px 0px;
m\argin: -3px 0px 0px 0px;
border: 0;
}
.bottomright {
float: right;
clear: right;
margin: -3px 0px 0px 0px;
\margin: -3px 0px -3px 0px;
m\argin: -3px 0px 0px 0px;
border: 0;
}
A minor thing is the white space below the image above the menu in IE. There should be no white space and there is none in FF...
Thanks!