Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Figure 3: Configuring the email content
Figure 4: Sample form design
...
Figure 6: Sample email
You can format the output with different font size and color with css in the Advanced > Formatting (CSS) field.
Example:
Code Block | ||
---|---|---|
| ||
//Change all word to blue color
*, .form-cell{
color:blue;
}
//Change all word to smaller size
*, .form-cell{
font-size:10px;
}
//Change all label format to underline
* label{
text-decoration:underline;
}
//Transform all header format to uppercase
.form-section-title{
text-transform:uppercase;
}
|