04/11/2019 at 8:48 am
#489548
Keymaster
@ Ellen
The templates come styled as is, but, you can use CSS to change any of the styling you wish. The templates provide many classes which can be used as CSS selectors.
here’s some example CSS to get you started:
#cn-gridder .cn-gridder-overlay {
font-family: cursive;
}
#cn-gridder .cn-gridder-overlay .fn {
font-size: 16px;
font-weight: 500;
text-transform: none;
}
#cn-gridder .cn-gridder-overlay .title {
font-size: 12px;
font-weight: 300;
text-transform: none
}
Tweak as desired, add it to the theme’s custom CSS area, generally found in the Customizer. (you may have to add the !important
flag to each property.
Hope this helps!