is there a way to get the 1 pixel solid border effect to work in netscape? If not, is there a way to prevent the outline box from showing up?
| SitePoint Sponsor |





is there a way to get the 1 pixel solid border effect to work in netscape? If not, is there a way to prevent the outline box from showing up?
Mike
It's not who I am underneath, but what I do that defines me.





If you're referring to Netscape 4.x then you're not going to have much luck w/o the use of DHTML or something (if that's even possible). The Netscape 4.x line doesn't support CSS well at all -- so you're just going to have to deal with it.
-Colin
Colin Anderson
Ambition is a poor excuse for those without
sense enough to be lazy.





With Nav4, you could use the @import rule of style sheets to prevent older browsers from loading that sheet. Put this code inside your document's HEAD:
And then the style sheet named mystyle.css might look something like this:Code:<style type="text/css"> <!-- @import url("mystyle.css"); --> </style>
Code:input { background-color: #f0f0f0; border: 1px solid #c1c1c1; color: #000000; font-family: "Courier New", Courier, monospace; font-size: 13px; }





Thanks for your help. I'll try the @import function.
Mike
It's not who I am underneath, but what I do that defines me.
Bookmarks