Hmm, the problem comes with Netscape 4.77 only. Alle IE's on MAC work fine!
I already have too css-files, one for PC and one for MAC, but the link tag is already used and therefore fixed.
Maybe I could overwrite it in another way...???
Printable View
Hmm, the problem comes with Netscape 4.77 only. Alle IE's on MAC work fine!
I already have too css-files, one for PC and one for MAC, but the link tag is already used and therefore fixed.
Maybe I could overwrite it in another way...???
Umm..where's the actual question?
If you are using some particular CSS property that works fine in all browsers that you support EXCEPT Netscape 4.77 (Mac or PC?) then just do browser detection and serve a different stylesheet for that particular browser.
<script language="JavaScript">
if (navigator.appVersion.indexOf("4.77")!= -1) {
document.write('<link rel .... >');
}
</script>
Or maybe if you provided more info, it could be possible to make it work...
Well, that's the solution! That works fine!
Thank you very much for your help.
(sorry I made a new thread in this forum instead of using the first one)