Forum Moderators: open
Box1
Box2
Box3
Box4
Box5
Box6
will work:
<table width="300" border="0" cellspacing="0" cellpadding="0">
or
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
will not work:
<table width="300" border="0" cellspacing="0" cellpadding="0" align="left">
or
<table width="300" border="0" cellspacing="0" cellpadding="0" align="right">
[edited by: tedster at 7:07 am (utc) on Sep. 26, 2003]
I want to claim the prize! Look here-
URL REMOVED AS PER BILLS SUGGESTION (though I see plenty of links here, as long as they're not promotional)
I commented out the mistakes so you could see them.
-Kenn
[edited by: kwasher at 7:03 am (utc) on Sep. 26, 2003]
Also setting each table to a fixed width of 140 px gives 6 x 140 = 840
on an 800 screen one table will go to the next line.
Better to set the width in percentage.
Next part...
If I understand correctly, then simply add a <br> or <p></p>
inbetween each table end and new table beginning... like so
<table>
<td>
<tr>
content here
</td>
</tr>
</table>
<br> or <p></p>
<table>
<tr>
<td>
content here
</td>
</tr>
</table>
Or put each table in a paragraph
<p>
<table>
<tr>
<td>
content here
</td>
</tr>
</table>
</p>
Im off to bed! Good luck!
When I plugged in the code I have with the working vertical column of boxes into the headers for my message board, I got the boxes lined up fine, but instead of appearing next to the message board content, it appeared on the left as it should, but pushed the message board content down so the message board content doesnt start until the boxes are all done. I want the boxes to be lined up next to my message board content. How is this done?
Thank you very much once again.
This could be tricky or easy. Create a brand new page so you dont mess up any others in the meantime.
On the new page, put this between the body tags:
<table border="0" width="100%">
<tr><!-- Row 1 -->
<td valign=top>BOXES HERE</td><!-- Col 1 -->
<td valign=top>MESSAGE BOARD HERE</td><!-- Col 2 -->
</tr>
</table>
Copy all the code from the boxes between
<body>
</body>
and put it in the new page where it says BOXES HERE.
Now copy all the code for the message board between
<body>
</body>
and put that where it says MESSAGE BOARD HERE.
Save the new page with a new name like test.html, then look and see if its ok.
If it is, rename the old message board file (so you can always get it back if you need to) something like messageboardfile20030925.html.
Then resave the test.html file as the filename you want to actually use.
Good luck!
Im really really going to bed now... its almost time to wake up ha ha ha ha!
Why not lose the tables and go with a much simpler CSS/<div> layout something like this:
<style>.box {width: 140px;}</style> <div class="box"><p>Content here #1</p></div>
<div class="box"><p>Content here #2</p></div>
<div class="box"><p>Content here #3</p></div>
<div class="box"><p>Content here #4</p></div>
<div class="box"><p>Content here #5</p></div>
<div class="box"><p>Content here #6</p></div>