Posted by Knut Krueger on 05/23/07 16:20
Hi Ben, Hi John
your hint about the H3 headline was helpful in another way:
I disabled all from the top to the container
(means #container is the first declaration)
and IE is now displaying the background fine.
I was looking at the wrong end of the code.
Now I could findout the wrong part of code.
John Hosking schrieb:
> Do you mean, you tried padding: 0px 0px 0px 0px; on #sunshineheadline
> and it didn't help?
yes i was a little bit confused about that ...
(As I understand Ben's suggestion, we're trying to
> move the <h3> back down a bit, away from the top of the div. 0px [which
> you've already got] wouldn't do that.) Or are you talking about
> something else?
working:
#sunshineheadline{
background: url(body2.jpg) repeat-x top left;
background-repeat:repeat-x;
clear:right;
padding-top: 1px
}
not working:
#sunshineheadline{
background: url(body2.jpg) repeat-x top left;
background-repeat:repeat-x;
clear:right;
padding: 0px 0px 0px 0px;
}
#sunshineheadline{
background: url(body2.jpg) repeat-x top left;
background-repeat:repeat-x;
clear:right;
padding: 0px;
}
[Back to original message]
|