Click to See Complete Forum and Search --> : Dumb question
stargal98
05-01-2003, 02:39 PM
I want there not to be a line seperating the top left and bottom left colmns. I want the antique white color to be uniform on that side of the page... it's just not working. Help!!!
This is the page (Http://www.24brownstreet.com/template2.htm) Thanks!
~~~Nicole~~~
khalidali63
05-01-2003, 02:57 PM
If I understnd correctly what you are referring to,
add this line of code in your table element
cellspacing="0"
something like
<table cellspacing="0" border="0">
nkaisare
05-01-2003, 03:38 PM
Nicole,
How about trying a non-table option:
<body style="background: #fff url('bg.gif') repeat-y">
<div><img src="logo.jpg" alt="24 Brown Street Inc"></div>
<div style="float: left"><img src="smalllamp.gif" usemap="#smalllamp" alt="nav"></div>
<div style="margin-left: 200px"><!-- Main Contents --></div>
Now tell me, isn't that better than using tables?
-----
Coming to your question: when border, cellpadding and cellspacing are not mentioned explicitly, they default to 1.
nkaisare
05-01-2003, 03:39 PM
bg.gif is 200px wide (any height: say 15px) gif with antique white color.
stargal98
05-01-2003, 03:50 PM
khalidali63--That did the trick, I knew there was something little that I should've changed. Thank you.
nkaisare--Believe me, I really do not like using tables for layouts, but my boss had me learn them and is having me work with them for a little while longer before I "go all crazy on him and try more CSS than tables.
At some point, I want to totally get away from them, but I am working with them for a little while.
Thanks to you both, you really are awesom HTML people!
See Ya!
~~~Nicole~~~