What's wrong with this Form code ?? --Horizontal Mis-Alignment Mystery!!!--

  • Thread starter Thread starter tmb
  • Start date Start date
T

tmb

Why isn't the button "Show Slide" and the "Combo Box" level on the display ?
They don't line up and I think I have tried everything. Anyone have any
idea's?

<form name= form2>
<p align="center">
<input type="button" value="Show Slide" name="B1"
onclick =
"movnam.TGotoLabel('/',document.form2.D1.options[document.form2.D1.selectedI
ndex].value);movnam.Play();" style="float: center">
<select size="1" name="D1" >
<option value="DSC00017">Mary</option>
<option value="DSC00003">Jim</option>
<option value="DSC00024">Dan</option>
</select>
</p>
</form>

Paste the above into a text file and look at it in your browser.

Why don't the two elements line up horizontally?

thanks for any help - tmb
 
Look fine in IE6 and NS 6.21 under Windows XP.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Also looks fine in NS7.1 and Opera 7.11.

What browser are you using?

PWT

Thomas A. Rowe said:
Look fine in IE6 and NS 6.21 under Windows XP.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================


tmb said:
Why isn't the button "Show Slide" and the "Combo Box" level on the
display
?
They don't line up and I think I have tried everything. Anyone have any
idea's?

<form name= form2>
<p align="center">
<input type="button" value="Show Slide" name="B1"
onclick =
"movnam.TGotoLabel('/',document.form2.D1.options[document.form2.D1.selectedI
ndex].value);movnam.Play();" style="float: center">
<select size="1" name="D1" >
<option value="DSC00017">Mary</option>
<option value="DSC00003">Jim</option>
<option value="DSC00024">Dan</option>
</select>
</p>
</form>

Paste the above into a text file and look at it in your browser.

Why don't the two elements line up horizontally?

thanks for any help - tmb
 
If it's IE, what did you set as a doctype
See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnie60/html/cssenhancements.asp
--



| Why isn't the button "Show Slide" and the "Combo Box" level on the display ?
| They don't line up and I think I have tried everything. Anyone have any
| idea's?
|
| <form name= form2>
| <p align="center">
| <input type="button" value="Show Slide" name="B1"
| onclick =
| "movnam.TGotoLabel('/',document.form2.D1.options[document.form2.D1.selectedI
| ndex].value);movnam.Play();" style="float: center">
| <select size="1" name="D1" >
| <option value="DSC00017">Mary</option>
| <option value="DSC00003">Jim</option>
| <option value="DSC00024">Dan</option>
| </select>
| </p>
| </form>
|
| Paste the above into a text file and look at it in your browser.
|
| Why don't the two elements line up horizontally?
|
| thanks for any help - tmb
|
|
 
Back
Top