How to style this registration form? |
I basically just took your existing, working form, and modified it to output markup which was closer to the new form. In general, when you are not very familiar with a particular piece of code and how it works, you should change as little as possible to get the desired result.
I assumed that the CSS for your form used the type values on the form's inputs, because most of them are not standard types. I would really recommend changing them to standard types ( http://www.w3.org/TR/html-markup/input.html#input ) and updating the CSS and markup to use classes instead. However, you may have other code (e.g. JavaScript) which is also dependent on these types, so tread carefully. |
Messages In This Thread |
How to style this registration form? - by user2374 - 01-31-2015, 03:11 PM
RE: How to style this registration form? - by CroNiX - 01-31-2015, 03:30 PM
RE: How to style this registration form? - by user2374 - 01-31-2015, 04:49 PM
RE: How to style this registration form? - by mwhitney - 02-03-2015, 01:58 PM
RE: How to style this registration form? - by user2374 - 02-03-2015, 08:35 PM
RE: How to style this registration form? - by mwhitney - 02-04-2015, 08:13 AM
RE: How to style this registration form? - by user2374 - 02-04-2015, 09:27 PM
RE: How to style this registration form? - by user2374 - 02-12-2015, 09:36 PM
RE: How to style this registration form? - by itconstruct - 02-13-2015, 12:13 AM
|