Could you possibly share the CSS you have used in your Gravity Forms 1.5 Multi-Page Form Preview. I am particularly interested in the shaded text entry boxes. Thanks again for all your help. New site looks great by the way...
Could you possibly share the CSS you have used in your Gravity Forms 1.5 Multi-Page Form Preview. I am particularly interested in the shaded text entry boxes. Thanks again for all your help. New site looks great by the way...
Yep, happy to help out. Nothing fancy, just using the box-shadow:inset property.
[css]
/* form elements -----------------------------------------*/
input,
textarea,
select {font-size:14px}
textarea {overflow:auto}
input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=tel],
select,
textarea {background-color:#f9f9f9; color:#252525; border:1px solid #ccc; padding:6px 2px; font-size:14px!important; box-shadow:inset 0px 0px 5px #ccc; -moz-box-shadow:inset 0px 0px 5px #ccc; -webkit-box-shadow:inset 0px 0px 5px #ccc; word-spacing: 0.4pt; letter-spacing:0.2pt;}