This is probably a really dumb question, but I just don't know what to do. Using Dreamweaver Mx I'm trying to create a page using tables. I lay out the page with the needed columns and rows. The top of my page consists of a row with three columns. No problem there, but when I go to the next row I can't move the columns. They remain lined up with the ones in the first row. How can I correct this?
msmitch 0 Newbie Poster
Recommended Answers
Jump to Postyeah looks like you need to get into nested tables...headache, learn CSS once you are familiar enough with HTML. Here's what it should look like:
<table cellpadding="0" cellspacing="0" border="0"> <tr> <td><table cellpadding="0" cellspacing="0" border="0"><tr><td>Col. 1</td><td>Col 2</td></tr></table> </td> </tr> <tr> <td><table cellpadding="0" cellspacing="0" border="0"><tr><td>Only one col.</td></tr></table> </td></tr></table>
not …
Jump to PostCreate Main table with (example) two rows and three columns. Then merge columns in second row and insert new table in that row. That should do it.
Btw. I recomend using div tags for layout and tables just for tabular data.
That's how it is done but do try CSS. …
All 8 Replies
DavidRyan 5 Posting Whiz in Training
msmitch 0 Newbie Poster
ManicCW 3 Junior Poster in Training
cmills83 8 Posting Whiz in Training

GreenDay2001
roryt 150 Nearly a Posting Virtuoso
Taffd 1 Junior Poster

GreenDay2001
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.