carl_galloway wrote:I'm actually having a different experience from you, all my latest designs that I'm working on are fully cross-browser compatible between ff2, IE7 and Opera 9. I haven't had a single problem with IE7 not understanding the same html/css as ff2.
For my css IE7 is still a piece of cr***
Look at my blog
http://blog.stephan.manske-net.de
I make a html nugget with:
Code: Select all
<!--[if IE]>
<style type="text/css">
#left {
left: 230px; /* RC width */
}
.ie-warning {
border: red 2px solid;
margin-top: 5px;
margin-left:20px;
margin-right:20px;
padding: 10px;
}
.serendipity_entryFooter { /* stm: exchange the background with a border*/
border: dashed 1px black;
}
</style>
<![endif]-->
I put it only to the overview site, so you can see the different at every single arcticel page.
major problem: without the additional #left - left: the left sidebar will not appear in IE!
my normal code
Code: Select all
#left {
width: 230px; /* LC width */
right: 230px; /* LC width */
margin-left: -100%;
}
There are still more problems as you see when you compare it with FF or Opera: the textlinks in the article-footer are not shown well ...
another example, my new site shown in the showcase-section:
http://joseph.test40038.test-account.com/ (joseph/joseph)
have a look at the grey navigation row on the top:
in every browser there is a great space between them and the image above.
normal css
Code: Select all
#content_container {
background: #fff url({TEMPLATE_PATH}img/banner-test3.jpg) top left no-repeat;
float: left;
border: 2px solid #dcdcdc;
padding: 125px 0 0 0;
margin-left: 50px;
width: 568px;
font-size: 9pt;
}
.entry_navigation, .staticpage_navigation, .serendipity_gallery_navigation, .serendipityAuthorProfile, .serendipity_search {
width:100%;
margin: 0px;
border: 1px dashed black;
padding: 0px;
margin-top: -20px;
margin-bottom: 20px;
background-color: #ededed;
color: inherit;
text-align: justify;
}
for the IE7 I still need this IE-corrections:
Code: Select all
* html #content_container {
padding: 135px 0 0 0;
margin-left: 25px;
}
* html .staticpage_navigation {
margin-top: 0px;
}