Layout troubles...X_x

Started by pokejungle November 8th, 2004 3:07 PM
  • 699 views
  • 15 replies
Seen March 13th, 2022
Posted December 28th, 2018
12,504 posts
19.7 Years
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 .

Dragonfree

Teh Spwriter. :3

Age 33
Female
Iceland
Seen February 9th, 2020
Posted November 28th, 2012
1,290 posts
19.1 Years
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.
~Butterfree/Dragonfree/antialiasis of The Cave of Dragonflies

Still not going to sprite for your fangame. Sorry, but I don't really sprite or give out permission for people to use my fake Pokémon anymore.

Dragonfree

Teh Spwriter. :3

Age 33
Female
Iceland
Seen February 9th, 2020
Posted November 28th, 2012
1,290 posts
19.1 Years
To make the code you already have into a layout, put a border on the table... add border="1" to it.
~Butterfree/Dragonfree/antialiasis of The Cave of Dragonflies

Still not going to sprite for your fangame. Sorry, but I don't really sprite or give out permission for people to use my fake Pokémon anymore.
Age 62
Male
Melbourne, Australia
Seen April 26th, 2018
Posted June 9th, 2014
11,439 posts
19.7 Years
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.


"One reason why mathematics enjoys special esteem, above all other sciences, is that its laws are absolutely certain and indisputable, while those of other sciences are to some extent debatable and in constant danger of being overthrown by newly discovered facts."
Albert Einstein

"What science can there be more noble, more excellent, more useful for men, more admirably high and demonstrative than mathematics."
Benjamin Franklin

"Mathematics, rightly viewed, possesses not only truth, but supreme beauty – a beauty cold and austere, like that of sculpture, without appeal to any part of our weaker nature, without the gorgeous trappings of paintings or music, yet sublimely pure and capable of a stern perfection such as only the greatest art can show."
Bertrand Russell

avatar and signature by FoxHound

ANNOY ME AT YOUR PERIL. I am becoming increasingly tired of the unmanly elitism and closed-mindedness of certain members who shall remain unnamed.

Dragonfree

Teh Spwriter. :3

Age 33
Female
Iceland
Seen February 9th, 2020
Posted November 28th, 2012
1,290 posts
19.1 Years
<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>
~Butterfree/Dragonfree/antialiasis of The Cave of Dragonflies

Still not going to sprite for your fangame. Sorry, but I don't really sprite or give out permission for people to use my fake Pokémon anymore.

Dragonfree

Teh Spwriter. :3

Age 33
Female
Iceland
Seen February 9th, 2020
Posted November 28th, 2012
1,290 posts
19.1 Years
No, you put <img src="filename of banner">
~Butterfree/Dragonfree/antialiasis of The Cave of Dragonflies

Still not going to sprite for your fangame. Sorry, but I don't really sprite or give out permission for people to use my fake Pokémon anymore.
Age 62
Male
Melbourne, Australia
Seen April 26th, 2018
Posted June 9th, 2014
11,439 posts
19.7 Years
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.


"One reason why mathematics enjoys special esteem, above all other sciences, is that its laws are absolutely certain and indisputable, while those of other sciences are to some extent debatable and in constant danger of being overthrown by newly discovered facts."
Albert Einstein

"What science can there be more noble, more excellent, more useful for men, more admirably high and demonstrative than mathematics."
Benjamin Franklin

"Mathematics, rightly viewed, possesses not only truth, but supreme beauty – a beauty cold and austere, like that of sculpture, without appeal to any part of our weaker nature, without the gorgeous trappings of paintings or music, yet sublimely pure and capable of a stern perfection such as only the greatest art can show."
Bertrand Russell

avatar and signature by FoxHound

ANNOY ME AT YOUR PERIL. I am becoming increasingly tired of the unmanly elitism and closed-mindedness of certain members who shall remain unnamed.