Forum Moderators: not2easy
body{
background-color: #000000;
}
will show up black as it is meant to be, however, if I use the same code in an external sheet, it shows up whatever the user's default color is, which is usually white. All other attributes specified in the stylesheet show up properly. This has only been an issue on Macintosh platforms in all its major browsers. Please help. I have a site with many, many pages that would be much easier to maintain if the stylesheets were external.
<link href="http://www.example.com/css/file.css" type="text/css" rel="stylesheet">
Note this second one uses the @import rule which is not read by older browsers, e.g. NN4.x...
<style type="text/css">@import url(http://www.example.com/css/file.css);</style>