Page 1 of 1
css problem > IE6
Posted: Mon 11. Jun 2007, 00:28
by tellus
I have some trouble to rounded corners to work in lower part in IE6
Have a little fix:
http://temp.sollentunapartiet.se/templa ... /iefix.css
The page is working in FF Opera and Safari...
/Anders
Posted: Mon 11. Jun 2007, 08:45
by update
Hi,
if I remember it right, this should work:
Code: Select all
* html div.meny_wrapp {
width: 665px;
}
instead of
Code: Select all
html * div.meny_wrapp {
width: 665px;
}
and so on
claus
EDIT: Did I get your question right? Not sure...
Posted: Mon 11. Jun 2007, 10:08
by Heiko H.
Hi tellus,
I am not sure whether I have understood you correctly.
Try:
Code: Select all
/* IE 6 Fix */
div.over_vanster {
background-image: none; /*switch off the defined bg of .main_bg of our standard css*/
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../picture/sidelement/ram/over_vanster.png', sizingMethod='crop');
}
/* background for other browsers */
html>body div.over_vanster {
background: url(./../picture/sidelement/ram/over_vanster.png);
}
Good luck, Heiko...