hi
we have
FIELD NAME
{INPUT BLOCK}
I don't found how have horizontable filed name and input block
can you say me ?
thnaks
stéphan
we have
FIELD NAME
{INPUT BLOCK}
I don't found how have horizontable filed name and input block
can you say me ?
thnaks
stéphan
Add this to a Javascript element at the top of the page.
jQuery(document).ready(function(jQ){
jQ('.G3-form .field').addClass('inline');
});
Add this to a CSS element at the top of the page.
.G3-form{
text-align: right;
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
}
jQuery(document).ready(function(jQ){
jQ('.G3-form .field').addClass('inline');
});
Add this to a CSS element at the top of the page.
.G3-form{
text-align: right;
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
}
You need to login to be able to post a reply.