Forum Moderators: phranque
Jennifer
Seriously, use the @import method to make sure NN4 doesn't get it.. then if you really want to present them with some sort of styling, colors backgrounds etc.. just make a seperate stylesheet for it and call it (before the @import) using the <link rel> method..
might help keep your clients happy if you feel that's going to be a problem..
For the record: I don't give NN4 styles, unless specificaaly requested to by a client
Suzy
One of those sites has been online since March and I just got my first NN4 complaint this week. Of course the client was a bit miffed, so I pitched them what I would charge for NN4 functionality. The price tag convinced them that I had made the right decision in forgetting about NN4. We just serve NN4 a totally unstyled page, and that means some information is a bit out of order, hence a bit confusing.
But the mac is another situation, much more important, and often overlooked by web developers who work on a PC.
There's a darned good reason we need standards instead of monopolies!
I can't see why it would make things MORE complex though. It's often as simple as:
<html>
<head>
<title> A Page </title>
<link href="styles/global.css" ...>
</head><body>
<table>
<tr>
<td colspan="2" id="nav"> ... </td>
</tr>
<tr>
<td id="left_column"> ... </td>
<td id="content"> ... </td>
</body>
</html>
Then you just define all the properties of the page (font, colors, sizes, widths, heights) in another page. It's much cleaner than the alternative, believe me.
However, straight CSS would be even cleaner, but it would come with some serious headaches.