Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to eliminate white space

New Here ,
Feb 09, 2009 Feb 09, 2009
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?
508
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 09, 2009 Feb 09, 2009
LATEST
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.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources