My First Article

They have: 472 posts

Joined: Oct 1999

Please review my first article. I want to know things like, whether the title is appropiate, any typos, does this article contain useless content, etc...?

quote:
=========================
Table Dangers In Netscape
=========================

Are you getting headaches in making those appear as what you want in Netscape? Here's your solution!

"Black Borders"
Some web designers like to create thin rows and columns around their table and fill them up with black to make borders around the table. But beware of Netscape, it has a "flaw" that can screw up your tables!

The problem with Netscape is that it doesn't show empty rows or columns in a table. That's why if you create a row or a column, change its background to black and don't put anything inside, Netscape doesn't show it.

Here's your solution.

First, create a 1x1 transparent gif and name it "trans.gif". Then edit the source of your HTML, and insert "trans.gif" inside every "border".

Example
=======

Old Code:
<TR>
<TD WIDTH=2 BGCOLOR="#000000"></TD>
</TR>

New Code:
<TR>
<TD WIDTH=2 BGCOLOR="#000000">
<IMG SRC="http://your_domain.com/trans.gif">
</TD>
</TR>

=======

Now that the "border" have something in it, Netscape will obediently show your beautiful black borders!

"More About Borders"
Tables come with their own borders. Yes, the good old grey borders. If you don't specify how thick the borders you want it to be, Internet Explorer will go with the default, 0. Netscape will go with the default too, but not as expected.

If you don't specify the borders, your table's rows and columns will look "spaced out". Here's your solution.

Example:
========

Old Code:
<TABLE>
<TR>
<TD BGCOLOR="#000000"></TD>
<TD BGCOLOR="#000000"></TD>
</TR>
</TABLE>

New Code:
<TABLE BORDER=0>
<TR>
<TD BGCOLOR="#000000"></TD>
<TD BGCOLOR="#000000"></TD>
</TR>
</TABLE>

========

The old code will make the black columns look spaced out in Netscape, as Netscape creates a transparent border around your table. But if you forcefully tell Netscape that you want the border to be "0", Netscape will have no choice but to remove that transparent border.

That's the end of this article! Hope it helps and thanks for reading!

Regards,
Jack

Written by Jack Chen
GoodBookmarks.com http://www.goodbookmarks.com/
Quality Links To Quality Sites

Thanks for your help!

------------------
Goodbookmarks.com - Quality Links To Quality Sites

They have: 568 posts

Joined: Nov 1999

Well, I like the title, and espcially the content. Because my tables are a bitch to get to work in netscape.

I'm no grammer or spelling expoert so just run it through spell check or grammer check before you post it.

Overall: it looks great, good job.

Justin S's picture

They have: 2,076 posts

Joined: Jun 1999

I'm moving this to the General Discussion Area since this doesn't have anything to do with reviewing a website...

------------------
Critiquing over 1000 sites on the Internet today...

Megan's picture

She has: 11,421 posts

Joined: Jun 1999

You've got a lot of grammar problems in there.

quote:Are you getting headaches in making those appear as what you want in Netscape?

This makes no sense. It should be something like this: "Are you having problems getting tabled layouts to work in Netscape?"

quote:But beware of Netscape, it has a "flaw" that can screw up your tables!

I wouldn't call it a flaw - just a different interpretation.

quote:<IMG SRC="http://your_domain.com/trans.gif">

It would probably be better to reccommend using a relative path like "images/trans.gif" instead of an absolute path.

quote:Now that the "border" have something in it, Netscape will obediently show your beautiful black borders!

This should read: "Now that the border has something in it.."

quote:Yes, the good old grey borders.

They're not always grey - for Windows users they appear the same colour as all 3D items - whichever colour the user has set that to in the appearances dialog box. This is one of the problems with using default table borders - someone could have a bright orange colour scheme that clashes with your site colours.

quote:Netscape will go with the default too, but not as expected.

What do you mean by that?

quote:If you don't specify the borders, your table's rows and columns will look "spaced out".

What do you mean by this? (not that I'm asking, these sentences just need some clarification)

I hope that you are planning on adding some screenshots. It would probably help to show people how a piece of code displays differently in IE and Netscape.

DOn't rely on Word to correctly help you with grammar - they're missing a lot of problems in this article.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.