Forum Moderators: not2easy
<style type="text/css">
<!--
select {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: bold;
}
form
{
margin: 10px;
}
#optsub
{
color: #000099;
}
-->
</style>
However, when I try to import the above as a separate style sheet , Netscape does not maintain font size nor font weight. Here is the import code I am using:
<style type="text/css">
<!--
@import url("libraryitems.css");
-->
</style>
Any idea what the problem is?
Many thanks.
P.S. import works fine in IE
Be sure the path to libraryitems.css is correct. If it's in your root directory and the file is being delivered from the /products subdirectory, you'd need to change your url to ../products.
Also, browsers seem to be picky about url-- different versions and platforms prefer different methods of spacing and quotes. According to [dithered.com...] , using the url(somefile.css) form (no space between url and the opening parenthesis, no quote marks) appears to be the most widely supported.