Forums

align Field Name: {Input Block}

IPT 20 Jan, 2021
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
SwingeyP 26 Jan, 2021
Answer
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 {

}
IPT 26 Jan, 2021
thanks
You need to login to be able to post a reply.