It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming HTML Forum

Make Text appear at bottom

Make Text appear at bottom

Postby RosieGp on Thu Feb 04, 2010 3:02 pm

How can I make the text appear at left bottom...
I have 3 taGS RETURNING DATA FROM sql:
<p> #TOC# </p>
<p> BUSINESS POLICY TRADEMARK REGULATIONS. </p>
<p> #Qry.USERSIGN# </p>



I want the text from this tag to appear one after other at left bottom:
For example:

This is basic algebra lesson.
BUSINESS POLICY TRADEMARK REGULATIONS.
Smith


How to do that? Any advise is appreciated.
RosieGp
 
Posts: 7
Joined: Thu Feb 04, 2010 2:46 pm

Re: Make Text appear at bottom

Postby harrierdh on Thu Feb 04, 2010 3:27 pm

Again, a little CSS would solve your problem. Google on "Sticky Footer".
harrierdh
50+ Club
 
Posts: 51
Joined: Wed Dec 16, 2009 7:04 pm

Re: Make Text appear at bottom

Postby RosieGp on Tue Feb 09, 2010 10:26 pm

ok I was trying to implement Ryan Fait's solution here is my code:
Code: Select all
<style>
   * {
   margin: 0;
   }
   html, body {
   height: 100%;
   }
   .wrapper {
   min-height: 100%;
   height: auto !important;
   height: 100%;
   margin: 0 auto -4em; /* the bottom margin is the negative value of the footer's height */
   }
   .footer, .push {
   height: 4em; /* .push must be the same height as .footer */
   }
   
</style>

<cfoutput>
   <div class="wrapper">
       <p>URL CONTENTS</p>
   <div class="push"></div>
   </div>
   <div class="footer">
       <p>#qrythis.sytem_admin#</p>
   </div>
</cfoutput>


Why is this not working for me???
RosieGp
 
Posts: 7
Joined: Thu Feb 04, 2010 2:46 pm


Who is online

Users browsing this forum: Yahoo [Bot] and 5 guests