Skip to main content
Participant
February 9, 2009
Question

How to eliminate white space

  • February 9, 2009
  • 1 reply
  • 535 views
I am working on a page written in early version of Fusebox with lots of include files. Between the main content and footer files there are many lines of whitespace showing up. The average user would not know to scroll all the way to the bottom if he wanted to access some of the links in the footer. I searched the forum and Googled the problem and could not find an answer. Anyone know how to suppress that white space?
    This topic has been closed for replies.

    1 reply

    Inspiring
    February 9, 2009
    Loyd Jr wrote:
    > I am working on a page written in early version of Fusebox with lots of include
    > files. Between the main content and footer files there are many lines of
    > whitespace showing up. The average user would not know to scroll all the way to
    > the bottom if he wanted to access some of the links in the footer. I searched
    > the forum and Googled the problem and could not find an answer. Anyone know how
    > to suppress that white space?
    >

    ColdFusion has many ways to suppress whitespace.

    ColdFusion Administrator Setting:
    "Endable Whitespace Management"

    <cfsilent></cfsilent>

    <cfsetting enableCFoutputOnly="true">

    <cfprocessingdirective supressWhiteSpace="true"></cfprocessingdirective>

    <cfcomponent output="false">

    <cffunction output="false">

    Mix and match as works best for you.