Changing font using CSS

  • clientvision
    Asked on June 2, 2016 at 9:42 AM
  • Jan
    Replied on June 2, 2016 at 11:53 AM

    Normally, the .form-all selector should fix it. But it seems that the .form-label was specified so you need to change it as well. Here's the CSS code:

    .form-all {
    font-family: Comic Sans MS, sans-serif !important;
    }

    .form-label {
    font-family: Comic Sans MS, sans-serif !important;
    }

    Here's a guide on how to inject custom CSS. Thank you.