Header looks different on Firefox

  • BrendaNeal
    Asked on December 5, 2017 at 4:40 PM

    I am trying to get the word Survey on one line...and the words "On Hold Projects" on the second line in my header.  It looks right in my edit mode but when I look at it in ie or Firefox it looks like this

    Survey:  ON HOLD
    PROJECTS

    I want it to look like this:

    SURVEY:
    ON HOLD PROJECTS


    Here's link to my form:  https://form.jotform.com/73382912784162

  • aubreybourke
    Replied on December 5, 2017 at 6:02 PM

    You can add this CSS:

    h1:after{
      display: block !important;
      content: 'ON HOLD PROJETS' !important;
    }

    How to Inject Custom CSS Codes

    It will work on all browsers:

    For example (Firefox):

    1512514946Survey  On Hold Projects   Moz Screenshot 10

    https://form.jotform.com/73387044546967

  • BrendaNeal
    Replied on December 5, 2017 at 8:55 PM

    It worked GREAT.  Thanks  -:)