OK....I have been playing around with some of the Halo stuff and I cant seem to get the left hand navigation to appear? The top and sub menus are all AOK but the main content and left nav is not working.....
Anyone see anything obvious....? If I strip these pages down to the bare minimum it still doesn't work?
Your displayPageLanding.cfm does not have any <cfoutput> tags around your html. If you use <cfsetting enablecfoutputonly="yes"> you must you <cfoutput> around any html you wish to output.
So your code should look something like this:
<cfsetting enablecfoutputonly="yes"> <cfimport taglib="/farcry/farcry_core/tags/container" prefix="con"> <cfimport taglib="/farcry/farcry_core/tags/webskin" prefix="skin">
<cfmodule template="/farcry/#application.applicationname#/webskin/includes/dmHeader.cfm" pageTitle="#stObj.title#">
<!--- breadcrumb trail --->
<cfoutput>
<table>
<tr>
<td> <img alt="" src="htpp://127.0.0.1/farcry_reed/wsimages/tl_curve_white.gif" height="6" width="6" id="tl"> <img alt="" src="tr_curve_white.gif" height="6" width="6" id="tr"> </td>
<td class="breadCrumb"></cfoutput><skin:breadcrumb separator=" / " here="#stobj.Title#"><cfoutput></td>
</tr>
<tr>
<td colspan="2"><div id="pageName"><h2>#stobj.title#</h2><img alt="small logo" src="http://127.0.0.1/farcry_reed/wsimages/corplogocolor.gif" height="59" width="66"/></div></td>
</tr>
</cfoutput>
<!--- <cfoutput>#stObj.Body#</cfoutput> --->
<!--- page based listing container --->
<cfmodule template="/farcry/#application.applicationname#/webskin/includes/dmFooter.cfm">
<cfsetting enablecfoutputonly="no">
-Brendan http://farcry.dameon.com.au
--- You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
