Re: layout meines cms - kennt sich wer gut mit css ....
Posted: Fri Sep 07, 2007 7:09 pm
bei mir hat deine lösung leider nicht geklappt aber habs gelöst. und zwar wirklich mit nem ie-hack.
und zwar mittels eines conditional comment im html
und ner 2 css datei in dem ich die abstände um 3px negativiere
dank euch vielmals für den stress (auch wenn ich später schon wieder neue fragen habe) und besonders dank an paracelsus.
lg
und zwar mittels eines conditional comment im html
Code: Select all
<!--[if lt IE 7]>
<style type="text/css">
@import url(pfad/zum/xyz.css);
</style>
<![endif]-->
Code: Select all
Code:
#headerleft {
margin-right: -3px;
}
#headerright{
margin-left: -3px;
}
#headermiddle{
margin-left: -3px;
margin-right: -3px;
}
lg