Two ways to achieve what Mickael wants.   Remember that Mickael's problem
was NOT how to include the code on the page ,but how to make sure it always
appears at the lowest point on the page.   So he has a layout issue, not a
CF Inclusions issue.

Method [a]:  CSS.  Use a DIV="footer" tag around the footer text and
absolute positioning in the stylesheet so that it's positioned at the bottom
of the window.  If you don't want to use the modern way to position elements
on a page, you'll have to divide up the page using tables...

Method [b]  Use a table for the overall page structure like this (simplified
somewhat for clarity):

<.!--- header include starts here . --->
<.body>
<.table>
<.tr>
       <.td colspan=3>
       Header stuff  - logo, images, etc.
       <./td>
<./tr>
<.!--- header include ends here . --->

<.!--- Left nav include starts here . --->
<.tr>
       <.td> Left nav bar contents</td>
       <.td>
<.!--- Left nav include ends here . --->
      
      
       Main body of the page - the big box in the middle of the window
      
<.!--- Right column include starts here . --->      
       <./td>
       <.td>Right Column contents</td>
<./tr>
<.!--- Right column include Ends here . --->      

<.!--- Footer include starts here . --->      
<.tr>
       <.td colspan="3">
Footer stuff  - a footer include file
       <./td>
<./tr>
<./table>
<./body>
<./html>


Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.


[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to