Forced space below form

G

Guest

Hello,

When I insert a form and then form fields into it, I have a difficult time
arranging the cell the form is in because of what appears to be a "forced"
space below where the form ends (dotted line). It is about a 20-pixel-high
space and I want to reduce that but I'm unable to resize the cell any
smaller.

Does anyone know how to get rid of this?

Thanks,
Beverly
 
T

Trevor L.

Beverly-Texas said:
Hello,

When I insert a form and then form fields into it, I have a difficult
time arranging the cell the form is in because of what appears to be
a "forced" space below where the form ends (dotted line). It is
about a 20-pixel-high space and I want to reduce that but I'm unable
to resize the cell any smaller.

Does anyone know how to get rid of this?

Thanks,
Beverly

I am not sure what the dotted line is, but you could try one of these

<form name="xxx" action="........." style="margin-top:0;margin-bottom:0">
should set the top and bottom margins to zero

<form name="xxx" action="........." style="margin-bottom:0">
should set only the bottom margin to zero

<form name="xxx" action="........." style="margin:0">
should set all margins to zero
 
G

Guest

Thanks so much - that worked!

Trevor L. said:
Beverly-Texas said:
Hello,

When I insert a form and then form fields into it, I have a difficult
time arranging the cell the form is in because of what appears to be
a "forced" space below where the form ends (dotted line). It is
about a 20-pixel-high space and I want to reduce that but I'm unable
to resize the cell any smaller.

Does anyone know how to get rid of this?

Thanks,
Beverly

I am not sure what the dotted line is, but you could try one of these

<form name="xxx" action="........." style="margin-top:0;margin-bottom:0">
should set the top and bottom margins to zero

<form name="xxx" action="........." style="margin-bottom:0">
should set only the bottom margin to zero

<form name="xxx" action="........." style="margin:0">
should set all margins to zero



--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
S

Stefan B Rusynko

PS
If using a style sheet just set a single style for all forms
form margin:0px;


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Beverly-Texas wrote:
| > Hello,
| >
| > When I insert a form and then form fields into it, I have a difficult
| > time arranging the cell the form is in because of what appears to be
| > a "forced" space below where the form ends (dotted line). It is
| > about a 20-pixel-high space and I want to reduce that but I'm unable
| > to resize the cell any smaller.
| >
| > Does anyone know how to get rid of this?
| >
| > Thanks,
| > Beverly
|
| I am not sure what the dotted line is, but you could try one of these
|
| <form name="xxx" action="........." style="margin-top:0;margin-bottom:0">
| should set the top and bottom margins to zero
|
| <form name="xxx" action="........." style="margin-bottom:0">
| should set only the bottom margin to zero
|
| <form name="xxx" action="........." style="margin:0">
| should set all margins to zero
|
|
|
| --
| Cheers,
| Trevor L.
| [ Microsoft MVP - FrontPage ]
| MVPS Website: http://trevorl.mvps.org/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top