Problem with the row height

  • Thread starter Thread starter Jack
  • Start date Start date
J

Jack

Hello,
My table rows height look OK when programming.
However their height almost doubles in run time.
Each row contains PayPal button which is a form per se, and html code for it
was provided by PayPal.
This buttons cause increase of row height.
I examined Form's Field Properties but I do not know how to set height.
I can only specify form height only when Positon is Absolute or Relative.
However when I select one of that positions button disappears from table.
What I am doing wrong?
http://www.phonedialerpro.com/VirtualRemote_prices.htm
 
-----Original Message-----
Hello,
My table rows height look OK when programming.
However their height almost doubles in run time.
Each row contains PayPal button which is a form per se,
and html code for it was provided by PayPal.
This buttons cause increase of row height.
I examined Form's Field Properties but I do not know how
to set height. I can only specify form height only when
Positon is Absolute or Relative. However when I select
one of that positions button disappears from table.
What I am doing wrong?
http://www.phonedialerpro.com/VirtualRemote_prices.htm

Try coding style="margin:0;" within each <form> tag. Or
better yet, add

<style>
form { margin: 0 }
</style>

to your <head> section.

Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
Remove the: &nbsp
which is the last line for each cell containing the paypal button
when viewing in html view.

hth
 
Thank you Steve,
That's solved my problem.
BTW, what is that : &nbsp and where it came from?
I have not inserted it, and it was not included in PayPal's ready to copy
code.
It must be Front Page inserting it for some reason.
Jack
 
Any time you create a new table or cell,
FrontPage automatically inserts a &nbsp
which is used as a "place holder" so you can later
place the mouse cursor inside the table or cell and either type text
or insert images.
As a test, create a new empty cell or table, then go to html view
and remove the &nbsp then go to regular view
and try to place the cursor in the table or cell.

Also to remove them in regular view, you could have placed the mouse
cursor at the bottom of each cell and then hit Backspace once.

;-)

Steve
 
Thanks a lot!
Always something to learn new! : )

Steve Easton said:
Any time you create a new table or cell,
FrontPage automatically inserts a &nbsp
which is used as a "place holder" so you can later
place the mouse cursor inside the table or cell and either type text
or insert images.
As a test, create a new empty cell or table, then go to html view
and remove the &nbsp then go to regular view
and try to place the cursor in the table or cell.

Also to remove them in regular view, you could have placed the mouse
cursor at the bottom of each cell and then hit Backspace once.

;-)

Steve
 
Back
Top