Chris,
As a web developer there is no reason that you can not build a web site that
basically looks the same for all users, not matter which graphical browser
they are using.
Why discriminate?
I think as a web developer/site owner, you will loose site visitors, since
the visitor's first impression would be one of negative, and most likely
will move on to another web site and never bother to return. Remember you
only have a few seconds to the impress the user that the site has what they
are looking for, so you need to use it wisely.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
"chris leeds" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I am currently working on a .css layout and was thinking about how I might
> use a browser detection script and a pop-up to tell nn4.x people why it
> looks so crappy but it'd have to have a cookie so it didn't hit them with
> the alert box on every page, etc.
>
> I think I came up with a good solution:
>
> using the @import rule like so:
> <style type="text/css"> @import "1.css"; </style>
> will block nn4.x AND ie4, using it like this:
> <style type="text/css"> @import (1.css); </style>
> will block only nn.
>
> so that's got me to a point where when I view the page with nn4.x it just
> serves a non-css page. which is fine. it's still readable and usable,
> though ugly but it didn't solve my problem of telling them WHY it's so
ugly,
> so here is what I came up with:
>
> on my style sheet I made a class called .warning:
> .warning{
> display: none;
> }
>
> and just after the body tag (before everything else on the page) put this:
>
> <span class="warning">WARNING: You're seeing an unformatted version of
this
> web. The reason for this is you are either using a very old browser or
the
> style sheet failed to load.</span>
>
>
> so what you've got is a warning that only shows if the page gets served
> without the style sheet, either due to an old browser or a technical
problem
> with the server.
>
> In all fairness I picked up the @import trick from a book, but the
..warning
> class thingy was all mine ;-)
>
> I think it's a better answer than JavaScript and it's sure a lot easier!
>
> Hope someone else can benefit from the trick.
>
>
>