Link to home
Start Free TrialLog in
Avatar of sulzener
sulzenerFlag for United States of America

asked on

How to eliminate the vertical space created by <CFFORM> or <FORM>?

Does anyone know if there is a way to eliminate the vertical space created whrn using <CFFORM> or <FORM>?  Is seems when I add that to my code it creates a space in the browser display.  Thanks again ... sulzener
Avatar of pinaldave
pinaldave
Flag of India image

move the form or cfform out of the table and it will eliminate the white space.

<cfform>
<table>

should be
<table>
<cfform>
ASKER CERTIFIED SOLUTION
Avatar of smaglio81
smaglio81

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sulzener

ASKER

pinaldave ... your solution did not resolve my problem, but smaglio81's did.  thank you both.