Theres a space between the top part and the bottom part in explorer but its fine in netscape. Im new to this so if I made an dumb mistake, its normal...
shouldn't have any gaps, put it all on the same line,
<.... top1.gif">
and see this " " remove the space from there as well (doesn't effect your layout but is good practice)
Any ones that dont have the on the same line, put them on the same line (no gaps)
table cells should always be some content or
some
content
never
some content
you also might want to fix your tables width of 1%
better yet: import the css styls from a css sheet so tha tyou have one that does all pages so that you can update easier
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.
Busy posted this at 22:05 — 6th January 2004.
He has: 6,151 posts
Joined: May 2001
this part <... top1.gif">
shouldn't have any gaps, put it all on the same line,
<.... top1.gif">
and see this " " remove the space from there as well (doesn't effect your layout but is good practice)
Any ones that dont have the on the same line, put them on the same line (no gaps)
table cells should always be some content or
some
content
never
some content
you also might want to fix your tables width of 1%
Renegade posted this at 00:07 — 8th January 2004.
He has: 3,022 posts
Joined: Oct 2002
Might also want to check the margins as well, but I think Busy's found your problem.
img {
margin:0px 0px 0px 0px;
}
Suzanne posted this at 00:23 — 8th January 2004.
She has: 5,507 posts
Joined: Feb 2000
Better:
img {
margin: 0; /* no unit measures needed for zero values */
}
Renegade posted this at 00:51 — 8th January 2004.
He has: 3,022 posts
Joined: Oct 2002
Yeah, its just a little habit I picked up from "learning" Physics at school - always include units.
m3rajk posted this at 17:54 — 13th January 2004.
They have: 461 posts
Joined: Jul 2003
better yet: import the css styls from a css sheet so tha tyou have one that does all pages so that you can update easier
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.