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

|
HTML Element |
CSS Class |
|---|---|
|
Panel Form |
.skcn |
|
Panel Form Name |
.skpt |
|
Panel Form Description |
.skpd |
|
Panel 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:
/* PanelForm1 is the Custom Style Identifier of the Panel Form container. */
.PanelForm1_skpt
Example
/* Change font size of Panel Form name to 20px. */
/* PanelForm1 is the Custom Style Identifier. */
.PanelForm1_skpt
{
font-size: 20px !important;
}
Note: Suffix your CSS declarations with !important to ensure it takes precedence over normal declarations.