Faerie_jane
02-15-2003, 08:04 PM
Is there a way to make it so that the text goes all the way to the end of the page without using breaks a thousand times? Kind of like a footer, only with html? So that it aligns at the bottom....?
|
View Full Version : is it possible to.... Faerie_jane 02-15-2003, 08:04 PM Is there a way to make it so that the text goes all the way to the end of the page without using breaks a thousand times? Kind of like a footer, only with html? So that it aligns at the bottom....? Alcy 02-15-2003, 09:47 PM You can use absolute positioning.... <div style="position:absolute; bottom:0px; left:#px;"> Text here. </div> Faerie_jane 02-15-2003, 11:32 PM thankyou. But... Its at the bottom of my page, but no matter WHAT i set the left number to (including negatives) it will NOT align in the center of the bottom of the page. I tried using center instead of left, and right instead of left...none of them worked. Once it gets to a certain point on the page it refuses to move over any more. Here is that section of the code... ______ <div style="position:absolute; bottom:-130px;" left:100;"> <table border="1"> <tr> <Td cellpadding="0" cellspacing="0"> <img src="back.gif" WIDTH="52px" HEIGHT="61px"> </td> <td>Go to Table of Contents </td> <td> <img src="forward.gif" WIDTH="52px" HEIGHT="61px"> </td> </tr> </table> </div> ______ thankyou.... Alcy 02-16-2003, 12:21 AM You've got an extra quote in there: <div style="position:absolute; bottom:-130px; left:100px;"> I think you can just use align=center ^^. <div style="position:absolute; bottom:-130px;" align=center> Faerie_jane 02-16-2003, 01:10 AM It doesnt work. See, it needs to align in the middle of this other table....you can see what i mean at http://www.meganlovesdance.com/ezine/layout1/askjane.html heres the code.... <HTML> <HEAD> <META NAME="Author" CONTENT="Jane Star"> <META NAME="Generator" CONTENT="Jasc Paint Shop Pro 7"> <TITLE>IDC Ezine</TITLE> </HEAD> <BODY background="bg1.gif" bgcolor="#4040FF"> <center> <!-- Begin Table --> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="505" HEIGHT="705"> <TR> <TD ROWSPAN="1" COLSPAN="1" WIDTH="10" HEIGHT="68"> <IMG NAME="Image70" SRC="Image7_1x1.gif" WIDTH="10" HEIGHT="68" BORDER="0"></TD> <TD ROWSPAN="1" COLSPAN="1" WIDTH="484" HEIGHT="68"> <IMG NAME="Image71" SRC="Image7_1x2.gif" WIDTH="484" HEIGHT="68" BORDER="0"></TD> <TD ROWSPAN="1" COLSPAN="1" WIDTH="11" HEIGHT="68"> <IMG NAME="Image72" SRC="Image7_1x3.gif" WIDTH="11" HEIGHT="68" BORDER="0"></TD> </TR> <TR> <TD ROWSPAN="1" COLSPAN="1" WIDTH="10" HEIGHT="628"> <IMG NAME="Image73" SRC="Image7_2x1.gif" WIDTH="10" HEIGHT="628" BORDER="0"></TD> <TD ROWSPAN="1" COLSPAN="1" WIDTH="484" HEIGHT="628" bgcolor="#000080" valign="top" align="top"> <font color="FFFFFF"><center> <table border="0" width="478" height="251" cellspacing="0" cellpadding="0"> <tr> <td width="162" height="144" valign="top" cellpadding="0"> <p align="right"><img border="0" src="askjanephoto1.gif" width="162" height="144"></td> <td width="316" height="107" valign="middle" leftmargin="0" rightmargin="0" cellpadding="0"> <p align="right"><img border="0" src="askjanetitle.gif" width="316" height="107"></td> </tr> <tr> <td width="100%" height="390" colspan="2" valign="top"><center><align="top"><img src="line2.gif" WIDTH="480px" HEIGHT="45px"><Br> <font color="#8080FF"> <p>Hey there, I'm Jane! And i'm here to answer any questions you have...about anything! Just send in your question (you don't have to use your name, you can use a silly anon. one if you like...) And I'll post your letter with the answer here for you in next months issue! I will try to put all of the letters on here that i receive, however...in the case that i receive too many to publish, I will choose as many as possible and email the others. <br>Email me your questions at askjane@faerieroses.fateback.com </td> </tr> </table> <div style="position:absolute; bottom:-130px; align=center;"> <table border="1"> <tr> <Td cellpadding="0" cellspacing="0"> <img src="back.gif" WIDTH="52px" HEIGHT="61px"> </td> <td>Go to Table of Contents </td> <td> <img src="forward.gif" WIDTH="52px" HEIGHT="61px"> </td> </tr> </table> </div> </TD> <TD ROWSPAN="1" COLSPAN="1" WIDTH="11" HEIGHT="628"> <IMG NAME="Image75" SRC="Image7_2x3.gif" WIDTH="11" HEIGHT="628" BORDER="0"></TD> </TR> <TR> <TD ROWSPAN="1" COLSPAN="1" WIDTH="10" HEIGHT="9"> <IMG NAME="Image76" SRC="Image7_3x1.gif" WIDTH="10" HEIGHT="9" BORDER="0"></TD> <TD ROWSPAN="1" COLSPAN="1" WIDTH="484" HEIGHT="9"> <IMG NAME="Image77" SRC="Image7_3x2.gif" WIDTH="484" HEIGHT="9" BORDER="0"></TD> <TD ROWSPAN="1" COLSPAN="1" WIDTH="11" HEIGHT="9"> <IMG NAME="Image78" SRC="Image7_3x3.gif" WIDTH="11" HEIGHT="9" BORDER="0"></TD> </TR> </TABLE> <!-- End Table --> </BODY> </HTML> Andyman 02-16-2003, 01:31 AM from what I see, the Table of Contents menu is in the middle, maybe you can just adjust the Div positioning (bottom px) of it. Or try combining that table with the one above it. bejayel 02-16-2003, 01:34 AM if that all you want to do, putit at the bottom using tables. Faerie_jane 02-16-2003, 02:04 AM I cant put it at the bottom using tables because it would mess the entire layout up. Yup, the table of contents is in the middle...but i want that entire table with the two arrows and table of contents in the middle of the layout.....at the bottom....and it wont align in the middle! i've already tried changing all of the attributes present NM: the first suggestion worked, i combined that table with the table already above it and it worked fine... |