Need help with some web programming...

Scarpozzi

Lifer
Jun 13, 2000
26,391
1,780
126
I'm trying to setup a login page for a major website, but I don't usually get stuck with this kind of thing. I have a page that has a main graphic in the left-hand corner and below it is a row on a table that has a small graphic on the left. What I want to do is add 2 links on the right side of this row.

Here's the code format:
##<td height="10" colspan=3 bgcolor="#EBAB00"><div align="left"><img ##src="founded.gif" width="83" height="10">
## </div></td>

My problem is that if I try to split the cell, it ends up splitting it in the wrong place and screws up the rest of the page. How can I force the graphic to be left alignment and have 2 text links on the right side to a help and forgot password page? Thanks-

 

royaldank

Diamond Member
Apr 19, 2001
5,440
0
0
Maybe this will help?

<td height="10" colspan=2 bgcolor="#EBAB00" align=left>
<img ##src="founded.gif" width="83" height="10">
</td>
<td align=right>
....insert your stuff here
</td>




 

kamper

Diamond Member
Mar 18, 2003
5,513
0
0
float your divs? Although I'm not sure how well that would mix with a table based layout.
 

ShadowBlade

Diamond Member
Feb 11, 2005
4,263
0
0
try some old tag that doesnt change the text and use styles to position absolutely
ie: <p style="position:absolute;top:50px;right:10px">stuff</p>
obviously adjust the 10 and 50 to suit your needs
 

statik213

Golden Member
Oct 31, 2004
1,654
0
0
Originally posted by: royaldank
Maybe this will help?

<td height="10" colspan=2 bgcolor="#EBAB00" align=left>
<img ##src="founded.gif" width="83" height="10">
</td>
<td align=right>
....insert your stuff here
</td>

Better than absolute positioning divs.
Is this how you did it?

Another thing to do is:

##<td height="10" colspan=3 bgcolor="#EBAB00">
<div style='float: left'><img ##src="founded.gif" width="83" height="10">## </div>
<div style='float: right'>new link 1 | new link 2</div>
</td>