Customization questions
-
Hi,
Without knowing CSS I am attempting to customise a Calculated Fields Form, and I have come some way, but cannot get control over three things, as follows:
1. In the calculated fields box at the bottom of my form I want to lose the border around the box. How do I do that?
2. In the section break boxes I want to make the break lines solid instead of dotted and I want control over their thickness. I tried playing with the suggested code, below, but when I changed the border from 0 px to any other value the section break line just disappears.
• Change the “Section Break” field:
• #fbuilder .section_breaks .section_break { border:0px; }
• #fbuilder .section_breaks label { font-size:18px; }
#fbuilder .section_breaks span { font-size:14px; }3. I would like to know how to make the dropdown boxes wider. I made them taller by adding the height parameter and setting it to 50 px, below, but adding a width parameter makes no difference.
#fbuilder input[type=text],
#fbuilder textarea,
#fbuilder select {
border: 1 px solid #00f; color: #61626b; font-size:20px; height: 50px;
}I would greatly appreciate any help.
Thanks
Paul
The page I need help with: [log in to see the link]
-
Hello @paulp51d
Q: In the calculated fields box at the bottom of my form I want to lose the border around the box. How do I do that?
A:
#fbuilder .cff-calculated-field input{border:0 !important;}Q: In the section break boxes I want to make the break lines solid instead of dotted and I want control over their thickness. I tried playing with the suggested code, below, but when I changed the border from 0 px to any other value the section break line just disappears.
A:
#fbuilder .section_break{border-top: 2px solid #000000;}Q: I would like to know how to make the dropdown boxes wider. I made them taller by adding the height parameter and setting it to 50 px, below, but adding a width parameter makes no difference.
A: Simply select the “Large” option for the “Field Size” attribute in the field’s settings.
Best regards.
The topic ‘Customization questions’ is closed to new replies.