2011-04-18, 06:45:22
Hello Connie, finally problem is solved. After numerous up and downs I just realized that css at time (or is it all time) it is very picky in the structure of the code. So I was writing initially:
when I switched to:
All is now fine and the form looks a bit nicer: http://www.helcan.com/contact-us/
I really hate computers !!!
Code:
/* CONTACT FORM */
.p01-contact{width: 500px;}
.p01-contact .text input{width:500px;}
.p01-contact .captcha input{width:275px;}
.p01-contact textarea{width:500px;height:auto}
when I switched to:
Code:
/* CONTACT FORM */
.p01-contact {
width: 500px;
}
.p01-contact .text input {width:500px;
}
.p01-contact .captcha input {width:275px;
}
.p01-contact textarea {width:500px;height:auto
}
All is now fine and the form looks a bit nicer: http://www.helcan.com/contact-us/
I really hate computers !!!