Hi
how is possible decrease the form "name", "email" e "message object" in contact?
thanks
http://88.198.84.57/nomosweb/index.php/ ... i/10-prova
select, textarea, input[type="text"], input[type="password"], input[type="url"], input[type="email"] {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #CCCCCC #E7E7E7 #E7E7E7;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-right: 1px solid #E7E7E7;
border-style: solid;
border-width: 1px;
box-shadow: 0 2px 4px #EEEEEE inset;
height: 32px;
line-height: 32px;
padding: 2px 9px;
}
textarea {
height: 150px;
}
Pawel F wrote:Hi,
sure in template folder you'll find joomla.css (line 11) there is style:
- Code: Select all
select, textarea, input[type="text"], input[type="password"], input[type="url"], input[type="email"] {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #CCCCCC #E7E7E7 #E7E7E7;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-right: 1px solid #E7E7E7;
border-style: solid;
border-width: 1px;
box-shadow: 0 2px 4px #EEEEEE inset;
height: 32px;
line-height: 32px;
padding: 2px 9px;
}
You have two options:
1)Make changes in this file
2)Or use CUSTOM CSS CODE in template settings to override
Change vaule for height, line-height
p.s.
For textarea use this simple code
- Code: Select all
textarea {
height: 150px;
}
input[type="text"], input[type="password"], input[type="email"] {
width: 150px;
}
textarea {
width: 150px;
}
"twitter"