CSS Font: Change to Damion Cursive

  • rhellmich674
    Asked on March 2, 2018 at 2: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;

    }

  • aubreybourke
    Replied on March 2, 2018 at 3: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:

    1520022472chazc Screenshot 10