Click to See Complete Forum and Search --> : Css
frei
December 20th, 2002, 07:26 AM
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...???
Zvona
December 20th, 2002, 07:42 AM
Umm..where's the actual question?
websmith99
December 20th, 2002, 05:13 PM
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...
frei
December 23rd, 2002, 05:03 AM
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)
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.