HighDots Forums  

Is this do-able in NS4?

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss Is this do-able in NS4? in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
John C
 
Posts: n/a

Default Is this do-able in NS4? - 10-04-2003 , 01:07 AM






My son put up this quickie website:

http://www.fieldapps.com

I decided to use it for CSS/4.01 practice. It seemed like a good
challenge. I made this:

http://www.jchap.com/steve

and showed it to him, although it's not quite "there" yet. He emailed
back: "Yeah, that code looks A LOT nicer. Of course, the Netscape4 thing
will keep me from using it, as many engineering types use Solaris
workstations and the latest supported release of Netscape for Solaris is
still 4.8. "

Before I embark on a hopeless venture, I thought I'd ask: Would a sane
person (or anybody in this NG ;-)) even try to reproduce this in NS4
using limited CSS without tables, or is hiding a bunch of the CSS and
shooting for "graceful degradation" the best one can do in a case like
this, other than sniffing NS4 and redirecting, or totally redesigning?

--
John C

Reply With Quote
  #2  
Old   
e n | c k m a
 
Posts: n/a

Default Re: Is this do-able in NS4? - 10-04-2003 , 02:06 AM






Quote:
and showed it to him, although it's not quite "there" yet. He emailed
back: "Yeah, that code looks A LOT nicer. Of course, the Netscape4 thing
will keep me from using it, as many engineering types use Solaris
workstations and the latest supported release of Netscape for Solaris is
still 4.8. "
Perhaps for his purposes [where most people who would view the page would
use Netscape 4.x] it may be best to use tables. However, when designing
using valid code/css - the best one can really hope for is for it to degrade
gracefully in Netscape 4.x.

Especially when creating complicated CSS layouts.
You will not have it looking exactly the same.

Nick.




Reply With Quote
  #3  
Old   
John C
 
Posts: n/a

Default Re: Is this do-able in NS4? - 10-06-2003 , 01:49 AM



On Sat, 04 Oct 2003 07:06:05 GMT e n | c k m a posted:

Quote:
and showed it to him, although it's not quite "there" yet. He emailed
back: "Yeah, that code looks A LOT nicer. Of course, the Netscape4 thing
will keep me from using it, as many engineering types use Solaris
workstations and the latest supported release of Netscape for Solaris is
still 4.8. "

Perhaps for his purposes [where most people who would view the page would
use Netscape 4.x] it may be best to use tables. However, when designing
using valid code/css - the best one can really hope for is for it to degrade
gracefully in Netscape 4.x.
I decided to take the challenge. See http://www.jchap.com/steve now. I've
only done the home page, and I haven't worked on the menu yet. But, it
seems to hold up as a fluid 3-column non-table layout with a banner and
footer, validating 4.01 strict and CSS 2 and looking very much the same
in IE6, Moz 1.4, and NS4.

--
John C


Reply With Quote
  #4  
Old   
Nikolaos Giannopoulos
 
Posts: n/a

Default Re: Is this do-able in NS4? - 10-06-2003 , 10:18 PM



John C wrote:
Quote:
On Sat, 04 Oct 2003 07:06:05 GMT e n | c k m a posted:

I decided to take the challenge. See http://www.jchap.com/steve now. I've
only done the home page, and I haven't worked on the menu yet. But, it
seems to hold up as a fluid 3-column non-table layout with a banner and
footer, validating 4.01 strict and CSS 2 and looking very much the same
in IE6, Moz 1.4, and NS4.
This may help you avoid trying to re-invent the wheel:

http://www.realworldstyle.com/nn4_3col_header.html

I haven't tried looking at your site in NN 4.X but I imagine if you want
to get this to work, you may find it easier if you used a layout that at
least says it already works in NN 4.X.

HTH,

--Nikolaos




Reply With Quote
  #5  
Old   
John C
 
Posts: n/a

Default Re: Is this do-able in NS4? - 10-06-2003 , 11:09 PM



On Mon, 06 Oct 2003 23:18:13 -0400 Nikolaos Giannopoulos posted:

Quote:
John C wrote:
On Sat, 04 Oct 2003 07:06:05 GMT e n | c k m a posted:

I decided to take the challenge. See http://www.jchap.com/steve now. I've
only done the home page, and I haven't worked on the menu yet. But, it
seems to hold up as a fluid 3-column non-table layout with a banner and
footer, validating 4.01 strict and CSS 2 and looking very much the same
in IE6, Moz 1.4, and NS4.

This may help you avoid trying to re-invent the wheel:

http://www.realworldstyle.com/nn4_3col_header.html

I haven't tried looking at your site in NN 4.X but I imagine if you want
to get this to work, you may find it easier if you used a layout that at
least says it already works in NN 4.X.

HTH,

--Nikolaos
Thanks, Nikolaos. I think I already re-invented the wheel, though. That
CSS is similar to what I came up with. There are some differences I might
play with to see if one is more reliable than the other.

What surprised me is that the stylesheet I'm using for NS4 only needs
*one* additional attribute in the @import stylesheet to display correctly
in Mozilla. IE6 didn't even need that.

Sometimes I think people make stylesheets more complicated than
necessary. Other times I think I must be missing important nuances by
reason of my naivete.

--
John C


Reply With Quote
  #6  
Old   
Nikolaos Giannopoulos
 
Posts: n/a

Default Re: Is this do-able in NS4? - 10-07-2003 , 02:49 PM



John C wrote:
Quote:
On Mon, 06 Oct 2003 23:18:13 -0400 Nikolaos Giannopoulos posted:


Thanks, Nikolaos. I think I already re-invented the wheel, though. That
CSS is similar to what I came up with. There are some differences I might
play with to see if one is more reliable than the other.
View the source of the style sheet as there are some important points to
consider such as resizing the browser window in NN 4.X which seems to
require JavaScript.

I haven't checked out the rest of the stuff but do yourself a favor and
look under the hood ;-)


Quote:
What surprised me is that the stylesheet I'm using for NS4 only needs
*one* additional attribute in the @import stylesheet to display correctly
in Mozilla. IE6 didn't even need that.

Sometimes I think people make stylesheets more complicated than
necessary. Other times I think I must be missing important nuances by
reason of my naivete.
I'm not sure that's the major problem with NN 4.X - The problems I have
heard of range from behaving badly to flat our crashing when hitting
certain CSS.

YMMV although I strongly suggest you look at resources geared to this
kind of stuff - don't underestimate it is my advice.

--Nikolaos



Reply With Quote
  #7  
Old   
John C
 
Posts: n/a

Default Re: Is this do-able in NS4? - 10-07-2003 , 06:45 PM



On Tue, 07 Oct 2003 15:49:03 -0400 Nikolaos Giannopoulos posted:

Quote:
John C wrote:
On Mon, 06 Oct 2003 23:18:13 -0400 Nikolaos Giannopoulos posted:


Thanks, Nikolaos. I think I already re-invented the wheel, though. That
CSS is similar to what I came up with. There are some differences I might
play with to see if one is more reliable than the other.

View the source of the style sheet as there are some important points to
consider such as resizing the browser window in NN 4.X which seems to
require JavaScript.

I haven't checked out the rest of the stuff but do yourself a favor and
look under the hood ;-)
I did. It's not near as daunting as looking under the hood of a late
model automobile. Not a bad html/css analogy, though. When I was (much)
younger, working on cars was pretty straightforward. Now, there are
hundreds of mysterious components that are related in mysterious ways and
messing with one can have unexpected results.

Quote:
YMMV although I strongly suggest you look at resources geared to this
kind of stuff - don't underestimate it is my advice.
I like to think I take pride in my work, do my best to achieve highest
quality. But, when coding to accommodate "old" browsers, the adage "good
enough for government work" is probably as high as the bar needs to be
set in most cases. A person's gotta decide what's the best use of his/her
time. Presently, this NS4 "challenge" is doing a lot toward making me
more knowledgeable and proficient with CSS in general, so the time is
well spent. After a point, time spent on NS4 is probably just lost time.

--
John C


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.