I'm using v4 in J1.7. I miss the ability in the "wizard edit" to change the label length, as I can do in v3 in J1.5. I can change it in html code, but lose the change if I use the wizard later. Similarly, the "header" doesn't put in any header code such as h2 or h3. Again, I can do that in code, but lose it if I use the wizard again. Could label length and header code be incorporated in the v4 wizard, as they are in v3 when you create a form? Thanks.
Forums
label length in v4
Hi jonwilkin,
You can set the label width with CSS like this in a Load CSS element
The so-called Header box is actually an HTML box. You can add code there with HTML tags - or click the Add/Remove editor link to open a rich text editor which has drop-downs to select styles.
You can put a single heading in there = or a full article.
Bob
You can set the label width with CSS like this in a Load CSS element
.cfdiv_select select,
.cfdiv_text label,
.cfdiv_textarea label,
.cfdiv_checkboxgroup label:first-child,
.cfdiv_radio label:first-child {
width:500px;
}
.small-message, .error-message {
margin-left: 500px;
}
The so-called Header box is actually an HTML box. You can add code there with HTML tags - or click the Add/Remove editor link to open a rich text editor which has drop-downs to select styles.
You can put a single heading in there = or a full article.
Bob
This topic is locked and no more replies can be posted.