I missed the original post, but why not just put
the first TD of a top-level table in the header?

That is:

Header contains:

<html>
<head></head>
<body>
<table border="0">
  <tr valign="top">
    <td>
    This is my nav stuff, or 
    <cfinclude nav.cfm>, or call your app as a tag/module, action=nav
    </td>
    <Td>

Your dsp files don't need to worry about tables, and your
footer looks like:

</td>
</tr>
</table>
</body>
</html> 



> -----Original Message-----
> From: Michael Omar Gatto [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 08, 2001 1:37 PM
> To: Fusebox
> Subject: Re: Left navigation and CF_BodyContent
> 
> 
> Well, you can diverge from orthodox fusebox and put HTML
> code into your index.cfm:
> 
> ===index.cfm===
> (switch stuff goes here)
> <cfinclude template="app_globals.cfm">
> <cf_bodycontent>
> <cfinclude template="dsp_header.cfm">
> <table>
>     <tr>
>         <td>
>             <cfinclude template="dsp_navSideBar.cfm">
>         <td>
>             <cfoutput>#bodycontent#</cfoutput>
>         </td>
>     </tr>
> </cf_bodycontent>
> 
> Cool, huh? Anyway, you can also make the menu dynamic by
> tying in the background color of the menu entry with the
> fuseaction. Definitely recommended for usability so users
> know immediately where they are in the application.
> 
> -Mike
> 
> ----- Original Message -----
> From: "K. Bennani" <[EMAIL PROTECTED]>
> To: "Fusebox" <[EMAIL PROTECTED]>
> Sent: Monday, January 08, 2001 8:37 AM
> Subject: Left navigation and CF_BodyContent
> 
> 
> > Hi,
> >
> > What is the best way to implement a left navigation bar
> (like the one you can see on www.amazon.com) with
> CF_BodyContent without using frames?
> >
> > Best regards,
> > Kamal
> >
> >
> >
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to