Hi there,
Thanks for the suggestion, but when I split the label and input box, I lose my spry validation (see A below). Can you tell me how to split the spry code (see B below)
Main Topics
Browse All TopicsI created a form in Dreamweaver CS4 using spry validation widgets, and I'm having 2 issues:
1. How do I left align the labels and right align the input boxes, so my form's design will look a bit neater?
2. When I open the form in IE, it breaks (on submit) if I don't allow ActiveX controls. I'm afraid some users will not allow the controls, will get an error page and not complete the form. Is there a way to solve this?
I attached the form and the css files as text files.
Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: GodDoesntExistPosted on 2009-04-27 at 03:42:33ID: 24240377
Hi!
I have the answer to your smallest problem. The alignment:
You can just put the form in tables (do not ever use table for design, only for forms). Like this:
<table>
<form>
<tr><td>Field description first field:</td> <td><input type="text" etc.</td></tr>
<tr><td>Field description second field:</td> <td><input type="text" etc.</td></tr>
</form>
</table>