I'm using a Twenty ten child theme. I have manipulated one page so I now have a little banner with a strapline right underneath the menu on that page only (done this creating a second entry content div on the page and using css)
Using the conditional statement for explorer makes it work fine ie menu stuck to banner, but in Firefox and safari, it moves the banner slighty down ont the entry-content div. If I give this div a negative margin it works, but affect the banner in explorer which moves up. How do I make the changes in FFox/Safari not affect Explorer and vice versa?
.entry-content {
clear: both;
margin: 0 auto;
background-color: #000; font-color: #fff;
}
.entry-content2 {
margin-top: -22px ; /*the negative value no longer works when I add in the conditional statement for explorer (below) /* padding: 15px 0 15px 40px;
display: block;
clear: both;
background: url("http://www.example.com/wp-content/uploads/2011/03/banner3.jpg"); font-family: arial; font-size: 13pt; color: #dcd0d1;
<!--[if gte IE 6]>
clear: both; display: block; position: relative; margin-top: -3px; /*this brings banner down right underneath menu, which I want*/
<![endif]-->
}