CSS Font: Change to Damion Cursive
-
rhellmich674Asked on March 02, 2018 at 02:35 PM
I was wanting to change the font in a short text entry input field. The intent was for the submitter to type in their name with the font being a cursive font. Below is what I entered into the Inject Custom CSS . It does change the font, just not to a cursive script. Is there anything further that could be done? Thanks,
#input_17 {
font-family: Damion, cursive;
}
This is a re-post of a comment on How to Inject Custom CSS Codes
-
aubreybourkeAnswered on March 02, 2018 at 03:28 PM
You can do it by inserting the following CSS code:
@import url('https://fonts.googleapis.com/css?family=Damion');*{
font-family: 'Damion', cursive;
}Here I used the * selector to affect all fields on your form. If you want to limit it to a specific field you will need to adjust the selector.
It looks like this: