View Full Version : Layout troubles...X_x
pokejungle
November 8th, 2004, 11:07 PM
OK, JA gave me the HTML for making my own layouts before, but now I'm confused on where to put my banner...
<table align="center" cellpadding="0" class="border">
<tr>
<td width="100" style="background-image:url(nav.gif)" summary="nav">Blah</td>
<td width="700" style="background-image:url(main.gif)" summary="main">More blah</td>
<td width="100" style="background-image:url(nav.gif)" summary="nav2">Blah</td>
</tr>
</table>
You can see my layout here (http://img.photobucket.com/albums/v338/pokejungle/PES-layout1.png) .
Dragonfree
November 8th, 2004, 11:11 PM
If you want it to look like that, do it like this:
<table align="center" cellpadding="0" class="border">
<tr>
<td width="100" style="background-image:url(nav.gif)" summary="nav" rowspan="2">Blah</td>
<td width="800" colspan="2">Insert banner here</td>
</tr>
<tr>
<td width="700" style="background-image:url(main.gif)" summary="main">More blah</td>
<td width="100" style="background-image:url(nav.gif)" summary="nav2">Blah</td>
</tr>
</table>
But keep in mind I didn't actually test that, so it might not work properly.
pokejungle
November 9th, 2004, 12:44 AM
Thanks! Hope that works! *crosses fingers*
pokejungle
November 9th, 2004, 02:01 AM
Sorry to double post, if RMW didn't post before me....
Can someone take my image and make into a layout for me...PLEASE? You can see my failed attempt at pokejungle.shyper.com/pes.html don't expect anything much.
Morkula
November 9th, 2004, 02:13 AM
I don't see any layout there, pj. :P
Anyway, I could try it, after LOTR is over on WB. XD
I'm trying to get some layout experience anyway.
pokejungle
November 9th, 2004, 02:34 AM
I am too >_>
That's the point though, the layout theoretically SHOULD show up, but it doesn't...~_~
PichuSecretBase
November 9th, 2004, 11:19 AM
<table border="3" cellspacing="10" width="750">
<tr>
<td rowspan="3">
Left Nav
</td>
<td>Banner</td>
</tr><tr>
<td>Content and Such</td>
</tr><tr>
<td>Copyright and Such</td>
</tr>
</table>
Basic Table for that. Edit colors and such.
Dragonfree
November 9th, 2004, 01:50 PM
To make the code you already have into a layout, put a border on the table... add border="1" to it.
pokejungle
November 9th, 2004, 10:32 PM
PSB-I don't see a right Nav space...@_@
Geometric-sama
November 10th, 2004, 12:26 AM
o_O You could try one of my new free layouts... I would do your image for you but my school now blocks Photobucket so I can't see the image.
Dragonfree
November 10th, 2004, 01:50 AM
<table align="center" cellpadding="0" border="1">
<tr>
<td width="100" style="background-image:url(nav.gif)" summary="nav" rowspan="2">Blah</td>
<td width="800" colspan="2">Insert banner here</td>
</tr>
<tr>
<td width="700" style="background-image:url(main.gif)" summary="main">More blah</td>
<td width="100" style="background-image:url(nav.gif)" summary="nav2">Blah</td>
</tr>
</table>
PichuSecretBase
November 10th, 2004, 11:35 AM
Oh I didnt put one. ><;;;; I'm dumb.
pokejungle
November 11th, 2004, 01:10 AM
ON the insert banner here do I just put the URL? It didn't work last time....=/
Dragonfree
November 11th, 2004, 01:26 AM
No, you put <img src="filename of banner">
pokejungle
November 11th, 2004, 01:31 AM
Thanks!
That should help ^^;
Geometric-sama
November 12th, 2004, 01:18 AM
You should take a quick look at a basic HTML tutorial if you make websites. ^^ I started out for the first two years of making websites without knowing any HTML, that's why my early sites were so bad. :P I used WYSIWYG only.