Jump to content

Form Design


jwcane

Recommended Posts

Would like to adjust input areas of forms. Would you please point me to instructions for controlling size and shape of input areas such as InputText. I have created the following style for my forms. the border radius property is supposed to place rounded corners in the input box. It does not work. Thanks
FormTable {
Align: Center;
Border: 1;
border-radius: 10px;
Cell-spacing: 5px;
Cell-padding: 15px;
font-family: Verdana, Arial, sans serif;
font-size: 2em;
line-height: 200%;
margin-left: auto;
margin-right: auto;
padding: 5px;
}
Link to comment
Share on other sites

.FormTable {  text-align: center;  border: 1px solid #777;  border-radius: 10px;  font-family: Verdana, Arial, sans serif;  font-size: 2em;  line-height: 200%;  margin-left: auto;  margin-right: auto;  padding: 5px;}.FormTable table {border-spacing:5px;border-collapse:collapse;   }.FormTable td, .FormTable th {padding:15px}

I'm guessing FormTable is a class? Each of these can be looked up: http://www.w3schools.com/cssref/default.asp

Link to comment
Share on other sites

Yes, form table but I'm trying to alter the sizes/shapes of form controls, as observed in some web sites. The controls would probably, also reside within a table structure.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...