Is it possible to make it so a specific radio button is all ready marked?
also
How can I make the fields larger?
Thanks
Questions
(2 posts) (2 voices)-
Posted 1 year ago #
-
There is no functionality at present for form objects to have a default value. I will monitor demand for this feature and consider it for a future release.
You can make fields larger on your forms by editing the screen.css file. If you open the file you will find a block of code that looks like this:
div.obj input, textarea {
width: 270px;
padding: 3px;
border-color: #ababab;
border-style: solid;
border-width: thin;
font-family: arial, sans-serif;
font-size: 1.2em;
color: black;
}It is easy to change the width of a field, but the font-size property requires a little explanation. Ems are a proportional measurement - the important thing to know is that in simpleContact Pro 1em = 10px.
The default type size is therefore equivalent to 12px. You could make it 15px by setting it to 1.5em etc.
Posted 1 year ago #
Reply
You must log in to post.