This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 3
Theme styling for multiple choice items and name
Started 11 years ago by mitchellm | 2 posts |
-
Perhaps I'm missing something simple, but I'm not seeing options for changing these theme items:
1. multiple choice (specifically the font size of the listed multiple choice items)
2. name field width (I'd like to make both "first" and "last" name widths widerEssentially I've edited my theme so basic font sizes are 13 or 14 px. The multiple choice options text size now seems very small in comparison.
In addition, with the increase in font size, the name fiels are too narrow. I can easily control the width of other field forms (short, medium, long) but apparently not with the name option.
Posted 11 years ago # -
The font size for those items you mentioned can't be controlled through the theme editor indeed. You will need to add custom CSS code for that.
So, let say you would like to set the font size for those items to 12px, you can add this code into your theme's "Advanced CSS" section:#main_body label.choice { font-size: 12px; } #main_body form li span label{ font-size: 12px; }
Changing the width of the name fields also require custom CSS code.
You can add this CSS code:.simple_name_1 input{ width: 150px; } .simple_name_2 input{ width: 200px; }
simply play around with the widths above.
MachForm Founder
Posted 11 years ago #
Reply
You must log in to post.