Hello all.
I programmed a site that works on Safari, Chrome, FF and IE, but not in Safari.
All the site content disappears in Opera for some reason. In the rest of the browsers the site looks fine.
When I delete few CSS lines, It's working in Opera, but not in IE.
I think that the only solution is to make a different stylesheet for Opera.
Before giving up, here is the problematic #div css:
#wrapper {
height:auto;
width:740px;
margin-right: auto;
margin-left: auto;
padding-top: 217px;
content: ".";
height: auto;
clear: both;
display: block;
position:relative;
}
If I put the following code instead, Its working in Opera, but make a big mess in IE:
#wrapper {
height:auto;
width:740px;
margin-right: auto;
margin-left: auto;
padding-top: 217px;
height: auto;
position:relative;
}
Is it possible to make a different stylesheet for Opera?
Or, if you have another CSS solution, it'll be great.
Thank you in advance, Yuval.