I think he's wanting to change the behavior for the server's debug output at the bottom of the page vs. a <cfdump> tag ... z-index places objects with larger z-index values overlapping or on top of objects with lower z-index values... I'm trying to think of any way to change the default output at the bottom and nothing really leaps to my mind -- the big problem with this being that the output is typically below the closing </html> tag and there aren't any ID values on any of the elements to work with. Even using javascript I'm not sure if there's any way to reference the html elements below the closing </html> tag, since it's not within the "document." Even if you were to create an OnRequestEnd file with something like <div id="blah"> in it, you couldn't close that div without closing it above the top of the debugging output, which would mean there wouldn't be any way to apply css to it, etc...
My best guess: make sure that the tallest element on your page is not absolutely positioned ( so as to allow it's height to force the debugging output to display below it ) ... Say for instance: <body><img src="" width="0" height="500" style="visibility: hidden"> or <body><cfloop index="x" from="1" to="100"><br /></cfloop> Then your debug output will always be a certain given distance from the top, and if all the other elements are absolutely positioned div's neither of these lines will affed their display. hth S. Isaac Dealey Certified Advanced ColdFusion 5 Developer www.turnkey.to 954-776-0046 > FYI this should do it : > <div id="cfdebugger" style="position:absolute; width:200px; height:115px; > z-index:1; visibility: visible;"><cfdump var="#session#"></div> > NOTE : depending on your z-axis/index, i cant remember if it works as 1 > on > top or the the greatest number? :-) > but that should output on top of everything else..... > -----Original Message----- > From: Robert Everland [mailto:REverland@;dixonusa.com] > Sent: 29 October 2002 15:33 > To: CF-Talk > Subject: RE: HTML Tricks > How do I do that, I am using CF5, to my knowledge it always just outputs > it > on the page, there is no user actions. > Robert Everland III > Web Developer Extraordinaire > Dixon Ticonderoga Company > http://www.dixonusa.com > -----Original Message----- > From: Robertson-Ravo, Neil (REC) > [mailto:Neil.Robertson-Ravo@;csd.reedexpo.com] > Sent: Tuesday, October 29, 2002 10:26 AM > To: CF-Talk > Subject: RE: HTML Tricks > place the dump tag on a layer which has a higher z-axis than the rest... > -----Original Message----- > From: Robert Everland [mailto:REverland@;dixonusa.com] > Sent: 29 October 2002 15:20 > To: CF-Talk > Subject: HTML Tricks > In our website I am making heavy use of divs to place tables anywhere I > want, the issue I have with this is that now when cf debugging is added it > just sort of goes underneath some of the tables. Does anyone have a fix > that > I could do real quick with HTML. > Robert Everland III > Web Developer Extraordinaire > Dixon Ticonderoga Company > http://www.dixonusa.com > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.

