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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bottom of page

Status
Not open for further replies.

lesina

Programmer
Apr 10, 2001
76
ES
Hi guys,

i can't figure this one out.
I have some jsp's that open new windows.

This window is not as big as the other and is dinamyc, meaning you can click a button and make another row on it with some stuff in it.
My problem is: i want to put an image in the bottom of the page. I've tried to make a table with height=100% and put the image in the last row but it looks bad when the window is almost clear (before the user adding more and more rows).

Another solution i´ve tried is to put the window height to 60% and so, put the image in last row , so when the page is almost empty, the distance between the begining of the page and the image (which is at the bottom) looks good.
But when the user inserts lots of rows, won't i have a problem?

If i don't use the table, i get the image in the top of the window, bellow the small text in it and looks bad because i would like it to look like a footer.

there's no bottom in tables to put a footer in the bottom of the page :(

Thanks in advance ===================
* Marta Oliveira *
===================
marta100@aeiou.pt
-------------------
CPC_TA- Braga
-------------------
Portugal
===================
 
easy way out of this problem is to have a frame at the bottom of the page with the footer in it. I help at your own risk, if I brake it sorry! But if I fixed it, let me know with a
star.gif
[thumbsup2]
admin@onpntwebdesigns.com
 
or do this
<HTML>
<BODY>
main body
</BODY>
<SCRIPT>
document.write(&quot;<center>&quot;);
document.write(&quot;This is my footer&quot;);
</SCRIPT>
</HTML>

this should push the footer down if a row is inserted. I help at your own risk, if I brake it sorry! But if I fixed it, let me know with a
star.gif
[thumbsup2]
admin@onpntwebdesigns.com
 
I'm not very clear on what your trying to do. Do you mean something like this?

<html>
<head>
<title></title>
<style>
#div {position: absolute; bottom:0px}
</style>
</head>
<body>
<div id=&quot;div&quot;>
content
</div>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top