icesword
06-16-2003, 04:43 PM
Well, what I used to have was a nice page with a bunch of filler images, because I used photoshop to make the site layout. Anyway, I took out 2 boring blank images, and added in a iframe for each. The problem is, every single picture that was in the table and organlized to go like one after the other horizontally, is now going VERTICALLY! like...i had:
1 2 3
4 5 6
now its:
1
2
3
4
5
6
Well...yeah. Its just not cool. I HOPE!! you can have a link to the page in question, because I'm asking for help and all...PLZ PLZ PLZ DONT BAN ME!! I'M NOT ADVERTISING!
http://galileo.spaceports.com/~icesword/main.html
Try this.
<table WIDTH="800" BORDER="0" CELLPADDING="0" CELLSPACING="0">
<tr>
<td COLSPAN="5"><img SRC="V3_copy_01.gif" WIDTH="800" HEIGHT="135" ALT=""></td>
</tr>
<tr>
<td><img SRC="V3_copy_02.gif" WIDTH="17" HEIGHT="465" ALT=""></td>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="120" height="465">
<tr>
<td><img SRC="SideMenu_01.gif" ALT="" width="120" height="90"></td>
</tr>
<tr>
<td><img SRC="SideMenu_02.gif" WIDTH=120 HEIGHT=90 ALT=""></td>
</tr>
<tr>
<td><img SRC="SideMenu_03.gif" WIDTH=120 HEIGHT=90 ALT=""></td>
</tr>
<tr>
<td><img SRC="SideMenu_04.gif" ALT="" width="120" height="90"></td>
</tr>
<tr>
<td><img SRC="SideMenu_05.gif" WIDTH=120 HEIGHT=90 ALT=""></td>
</tr>
<tr>
<td><img SRC="V3_copy_07.gif" width="120" height="15"></td>
</tr>
</table>
</td>
<td><img SRC="V3_copy_04.gif" WIDTH="28" HEIGHT="465"></td>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="619" height="465">
<tr>
<td><iframe bgcolor="000000" src="news.html" name="News" width="619" height="450" frameborder="0" border="0"></iframe></td>
</tr>
<tr>
<td><img SRC="V3_copy_08.gif" width="619" height="15"></td>
</tr>
</table>
</td>
<td><img SRC="V3_copy_06.gif" WIDTH="16" HEIGHT="465"></td>
</tr>
</table>
icesword
06-16-2003, 06:22 PM
w00t!! yay! It works! What did you do? all I noticed was that the img src's were changed to remove image/, which effectively killed all the pics, but when I fixed that, it was perfect!!! TY TY TY TY TY!!! you gotta tell me what you did =)
Oh sorry about that. I forgot to add those back in... I was testing it on my own computer :blush:
<tr>
<td COLSPAN="5"><img SRC="V3_copy_01.gif" WIDTH="800" HEIGHT="135" ALT=""></td>
</tr>
Colspan="5" means that the current row will span across five cells. Instead of putting those cells in one row, you gave each of them a row of it's own. It wasn't a big mistake, but it really messes up your page ^^