Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

i dunno the tag

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hmm
i just wanna put some text at the bottom of my web page
does anyone know the container tag?? is it like the <valign=basline> or something??
thnx heaps
 
i just want this at the bottom of my page:

=========================================================
Webpage by .............
Contact at .............

i figured id use the <hr> but dont know the container tag to put this at the bottom of the page....
thnx
 
Hi,

valign=&quot;&quot; is for table rows or cells so will only work if you put your text in a table.

You could do something like:

<span style=&quot;position: absolute; top: 100%; left: 50%&quot;>text here</span>



É
<!--#include file=&quot;profound quotation&quot; -->
 
Try this

<span style=&quot;position: absolute; top: 99%;&quot;>

<table summary=&quot;&quot; width=&quot;100%&quot;>
<tr>
<td>
=========================================================
</td></tr>
<tr><td>
<p>Webpage by .............</p>
</td></tr>
<tr><td>
<p>Contact at .............</p>
</td>
</tr>
</table>
</span>


You will need to add more ===== and also you could add align=&quot;center&quot; into the cell which holds the ===
so you have
<td align=&quot;center&quot;>======= etc





É
<!--#include file=&quot;profound quotation&quot; -->
 
Just thought...do you want === at the bottom or a solid line??? <hr> will give you a solid line if thats what you want, just insert it into the table and set the width.

Try something like:
<hr align=&quot;center&quot; width=&quot;100%&quot; size=&quot;1&quot;> É
<!--#include file=&quot;profound quotation&quot; -->
 
WOW!! thanx for all ur help
it works nicely
but i have one more problem - above this <hr> and text
i have an image: <img align=right src=&quot;demonhunter.gif&quot;>
so although the <span> and <hr> are &quot;center&quot; alligned
it still doesnt fill the screen as it is only alligned under the image. DO u know what i mean?? the <hr> and <span> seem the be &quot;right&quot; alligned under the img
THnx again smart pple
 
Hi,
can you either post the link to your page or post the code cos I'm not exactly sure what you mean.

Do you have anything enclosing the IMG with the hr and span tags? It sounds like you put them together in a table or something, otherwise I cant see why this would happen.
We'll tell you more when we can see the code.





É
<!--#include file=&quot;profound quotation&quot; -->
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top