| Travis 2005-07-20, 7:47 pm |
| First I would suggest you get out of layout mode. The code that is
crated by DW in that mode is terrible. It is bloated, hard to debug,
and creates fragile page structure. Take a look here for a good
tutorial on tables:
This will teach you about tables:
http://www.dwfaq.com/Tutorials/Tabl...ible_tables.asp
This one shows how to use css in conjunction with your tables:
http://www.projectseven.com/tutoria...ss_td/index.htm
As for your problem of spacing it is because tables come with a certain
amount of default cell padding and cell spacing. To get rid of to you
can click on your table then in the properties inspector enter in 0 for
CellPad, CellSpace, and Border.
You could also go into code view and make sure your table tags looks
something like this:
<table cellpadding="0" cellspacing="0" border="0">
Travis
***************************************
http://www.webblobber.com - Free Templates, Javascript, Fonts & More.
***************************************
JDMallion wrote:
> :frown;
>
> I am a real newbie guys so please dont confuse me with loads of tecno babble!!
> :)
>
> I am trying to create some tables within dreamweaver, but i cannot make them
> so that they have a really low table height!! Whenever i try to drag to make
> the row height smaller it defaults back to a min size. As if the text has got
> some sort of border!!
>
> I want to make it so that the text just sits in the table row with out any
> extra cell above or below it.... if you see what i mean!
>
>
|