Embed Form
- Last UpdatedJun 22, 2023
- 1 minute read
You can change style for HTML elements of Embed Form using CSS classes.

|
HTML Element |
CSS Class |
|---|---|
|
Embed Form |
.skcn |
|
Embed Form Name |
.skpt |
|
Embed Form Description |
.skpd |
|
Embed Form Body |
.skcw |
Prefix the Custom Style Identifier of a control with the CSS Class name to apply the style to the specific control. For example:
/* EmbedForm1 is the Custom Style Identifier of the Embed Form container. */
.EmbedForm1_skpt
Example
/* Change font size of Embed Form name to 20px. */
/* EmbedForm1 is the Custom Style Identifier. */
.EmbedForm1_skpt
{
font-size: 20px !important;
}
Note: Suffix your CSS declarations with !important to ensure it takes precedence over normal declarations.