How Do I Adjust the Font in Hover Text Boxes?

  • JimMcL
    Asked on July 13, 2015 at 5:17 AM
  • abajan Jotform Support
    Replied on July 13, 2015 at 5:39 AM

    Thanks for asking. The selector for that element is .form-description-content

    So, let's say you wanted to enlarge the font size to 12px (12 pixels). You would add the following rule, either in the injected CSS or CSS tab of the form designer:

    .form-description-content {
      font-size: 12px;
    }

    Of course, you're not limited to changing just the size. You may also want to change the font style to (say) italic:

    .form-description-content {
      font-size: 12px;
      font-style: italic;
    }

    That's how it's done. If you would like further help with this, we'd be happy to provide it.

    Cheers