Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 04-06-2004, 08:20 AM   #1
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
HTML Guruz.

Hi lets say there is a table.

<table width="100%">
<tr>
<td>Welcome</td>
</tr>
</table>

Now the height of it differs.

On the bottom of that table i want some text.
How do you do that.
Something like <div valign="bottom">Text</div>.
So that the text will appear on the bottom of the table.

You could use a row of <br> but the height differs.

Thnx alot!
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 08:21 AM   #2
Roald
SecretFriends.com
 
Roald's Avatar
 
Industry Role:
Join Date: May 2001
Location: IMC Headquarters
Posts: 27,888
add valign="bottom" in the TD tag
__________________


WE ARE BUYING PAY SITES! CONTACT ME



ClubSweethearts | ManUpFilms | SinfulXXX | HOT * AdultPrime * HOT


Paying webmasters since 1996! Contact: r.riepen @ sansylgroup.com | telegram: roaldr
Roald is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 08:39 AM   #3
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
Thanks, that'll do but i need text in the same TD on top aswell.

There is basically one table, with two TD's.
The left TD will set the height (there's some stuff in it),
but in the right TD there's not so many stuff, just a few lines of text.

So those few lines on the right TD need to stay on top,
but I also need a line on the bottom in that right TD.

Thnx :P.
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 08:40 AM   #4
MattO
The O is for Oohhh
 
Join Date: Feb 2003
Location: AUSTIN TEJAS
Posts: 10,861
just add another row with a colspan=2
MattO is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 08:46 AM   #5
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
Yeah but I guess that row will then be placed under everything, so that text will also appear under anything of the left TD, while it should be next to the most bottom line of the left TD. Lol... :P.
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 09:31 AM   #6
chodadog
Confirmed User
 
Join Date: Apr 2002
Posts: 9,736
Not entirely sure what you want. But you want the text to be at the very bottom of the table, without a gap?

Easiest way to do it would be to create a new row and set the cellpadding value of the table to 0. Just added the line breaks to show what happens.

&lt;table cellpadding="0" width="100%" border="1"><br>
&lt;tr><br>
&lt;td>Welcome&lt;BR>&lt;BR>&lt;/td><br>
&lt;/tr><br>
<br>
&lt;tr><br>
&lt;td valign="bottom">Bottom&lt;BR>&lt;/td><br>
&lt;/tr><br>
&lt;/table>

<table cellpadding="0" width="100%" border="1">
<tr>
<td>Welcome<BR><BR></td>
</tr>

<tr>
<td valign="bottom"><BR><BR>Bottom<BR></td>
</tr>
</table>

I think that's what you wanted. You were rather vague, though.
__________________
26 + 6 = 1
chodadog is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 09:40 AM   #7
Dynamix
G F Y not
 
Industry Role:
Join Date: Jan 2004
Location: MN
Posts: 2,910
PHP Code:
<HTML>
<
TABLE BORDER=3><TR><TD ROWSPAN=2>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
</
TD><TD VALIGN=TOP>Spacer</TD></TR>
<
TR><TD VALIGN=BOTTOM>Blah</TD></TR></TABLE>
</
HTML
<CENTER>
<TABLE BORDER=3 WIDTH=80%><TR><TD ROWSPAN=2>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
Spacer<BR>
</TD><TD VALIGN=TOP>Spacer</TD></TR>
<TR><TD VALIGN=BOTTOM>Blah</TD></TR></TABLE>
</CENTER>
__________________

TGPFactory Full TGP Design & Installation Services
ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
See who I am at AdultWhosWho.com!
Dynamix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 09:48 AM   #8
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
Wow! Thanks guys, that's just excellent.
Indeed Chodadog, that was the idea.
Dynamix did it just the way i wanted. Awesome!
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2004, 09:52 AM   #9
Dynamix
G F Y not
 
Industry Role:
Join Date: Jan 2004
Location: MN
Posts: 2,910
Quote:
Originally posted by FuqALot
Wow! Thanks guys, that's just excellent.
Indeed Chodadog, that was the idea.
Dynamix did it just the way i wanted. Awesome!
glad I could help
__________________

TGPFactory Full TGP Design & Installation Services
ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
See who I am at AdultWhosWho.com!
Dynamix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.