Created
October 5, 2016 18:42
-
-
Save jameslaws/0c70134d4db459f677467d20a50509b1 to your computer and use it in GitHub Desktop.
Styling the Field Wrap of a Ninja Form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Styling all field wraps | |
*/ | |
.field-wrap { | |
/* Your CSS styles */ | |
} | |
/* | |
Styling a field type wrap | |
EXAMPLE: .textbox-wrap {} | |
*/ | |
.field-type-name-wrap { | |
/* Your CSS styles */ | |
} | |
/* | |
Styling a specific field wrap | |
EXAMPLE: #nf-field-12-wrap {} | |
*/ | |
#nf-field-field_ID-wrap { | |
/* Your CSS styles */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment