Created
October 5, 2016 18:55
-
-
Save jameslaws/b4ccd6b80fa604b11b73684b0cd82ca5 to your computer and use it in GitHub Desktop.
Styling the Field Element 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 elements | |
*/ | |
.ninja-forms-field { | |
/* Your CSS styles */ | |
} | |
/* | |
Styling a field type element | |
EXAMPLE: .textbox-wrap .ninja-forms-field {} | |
*/ | |
.field-type-name-wrap .ninja-forms-field { | |
/* Your CSS styles */ | |
} | |
/* | |
Styling a specific field element | |
EXAMPLE: #nf-field-12-wrap .ninja-forms-field {} | |
*/ | |
#nf-field-field_ID-wrap .ninja-forms-field { | |
/* Your CSS styles */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you tell me where to add this code, please?