css problem > IE6

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
tellus
Posts: 94
Joined: Tue 17. Feb 2004, 18:53
Location: Sweden
Contact:

css problem > IE6

Post 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
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Post 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...
User avatar
Heiko H.
Posts: 868
Joined: Thu 27. Oct 2005, 11:41
Location: Dresden
Contact:

Post 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...
Post Reply