Posts: 2
Threads: 1
Joined: Mar 2011
Hi,
Sorry if this is being thick, but - how do you specify the width/height of the form fields and message box? I can't seem to find where this value is stored but it comes as default very thin indeed.
Thank You!
Duran
Posts: 2
Threads: 1
Joined: Mar 2011
For example:
http://www.zdesign.co.uk/testbed/gs/
On the right hand side-bar: the contact form - I want it to be full width?
Posts: 30
Threads: 5
Joined: Feb 2010
2011-03-26, 09:26:52
(This post was last modified: 2011-03-26, 09:29:09 by sandeepkashyap.)
in style.css add width to:-
line 239
Code:
input {
background-color: #F6F6F6;
border: 0.1em solid #97BDE1;
border-radius: 3px 3px 3px 3px;
color: #5191CD;
font-family: 'Droid Sans',Arial,Helvetica,sans-serif;
font-size: 12px;
padding: 4px;
width: 240px;
}
line 250
Code:
textarea {
background-color: #F6F6F6;
border: 0.1em solid #97BDE1;
border-radius: 3px 3px 3px 3px;
font-family: 'Droid Sans',Arial,Helvetica,sans-serif;
font-size: 13px;
padding: 4px;
width: 240px;
}
Posts: 69
Threads: 2
Joined: Oct 2010
Hi,
Indeed, the plugin is not involved in styling the forms : it only create an html structure.
So, the style is managed by GetSimple or the template.
I should perhaps explain that in the documentation.
PS : in fact there is one thing styled : the small red sentences about field required or field error.