Author |
Topic  |
|
sr_erick
Senior Member
   
USA
1318 Posts |
Posted - 14 June 2001 : 15:54:32
|
Ok, to start off, I have made an asp page and have used the include code to include a header and footer for the page. Is there a way, somehow, to make the footer stay at the bottom of the page, even if the conent on the page isn't that much or if someone uses a higher screen res. I dont mean like a frame, just so the footer is always near the bottom, no matter where the content on the page stops. http://www.snowmobilefanatics.com/gmr/home2.asp Take a look and test the page in a high screen res. Thanks for any help. 
__________________________________
 Snowmobile Fanatics
|
|
MorningZ
Junior Member
 
USA
169 Posts |
Posted - 14 June 2001 : 18:08:47
|
what you want to do is possible.... but it'll only work in IE, and that's the <table height="100%">
it doesnt work in Netscrape ( which seems to be the case with a lot of "cool" stuff )
btw, i like your site.. very nice!

Edited by - MorningZ on 14 June 2001 18:10:14 |
 |
|
sr_erick
Senior Member
   
USA
1318 Posts |
Posted - 14 June 2001 : 18:44:45
|
Ok, so if I have my <!--#INCLUDE FILE="bottom.asp" --> right before the ending </body> tag, how would I incorperate that. Thanks for the help and the compliment. 
__________________________________
 Snowmobile Fanatics
|
 |
|
sr_erick
Senior Member
   
USA
1318 Posts |
Posted - 14 June 2001 : 20:36:28
|
Ok, that works but then there is always a page length of empty space at the bottom. THat is ok, if the page is blank, but when it is full of content, I want the text to be right down by the footer. Do you get what I mean? Thanks!
__________________________________
 Snowmobile Fanatics
|
 |
|
sr_erick
Senior Member
   
USA
1318 Posts |
Posted - 15 June 2001 : 00:02:31
|
Anyone? Is there any kind of script or something I could use to accomplish this task? Thanks.
__________________________________
 Snowmobile Fanatics
|
 |
|
gor
Retired Admin
    
Netherlands
5511 Posts |
Posted - 15 June 2001 : 00:51:54
|
Just letting you know we weren't ignoring you: I don't know. Well otherwise then putting in a loop that fills the table with empty (1 space) lines, but that would mean you would need to have a way to find out how many lines are on a page and how many you allready used, and that would be almost impossible.
Pierre Join the Snitz WebRing |
 |
|
sr_erick
Senior Member
   
USA
1318 Posts |
Posted - 15 June 2001 : 01:19:55
|
I know you weren't ignoring me. I just thought of the script idea so I posted for you guys to ponder off of. Thanks!
__________________________________
 Snowmobile Fanatics
|
 |
|
Dan Martin
Average Member
  
USA
528 Posts |
Posted - 15 June 2001 : 02:34:36
|
Here's a solution I've tested on IE and NS 4.0, and it works, no matter how much content.
<HTML> <table width=100% height=100%> <TR valign=top> <TD> PUT ALL YOUR PAGE CONTENT HERE </td> </tr> <TR valign=bottom> <TD> PUT BOTTOM HERE </TD> </TR> </table> </HTML>
That should work unless your content is bigger than the screen, and you still want something locked to the bottom.....then you will need a script. I've used a script to lock a menu to the top of the screen(http://www.getitcrunk.com/calendar). But never the bottom.
Edited by - Dan Martin on 15 June 2001 02:37:39 |
 |
|
|
Topic  |
|