Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mike Walsh

    (@mpwalsh8)

    You don’t see the field titles (labels) because your theme has the following CSS defined:

    html.placeholder label[for] {
        display: none;
    }

    This CSS hides all label elements and affects the Google Forms. The fix is fairly simple. Enable Custom CSS (Dashboard > Settings > Google Forms – make sure the Custom CSS checkbox is checked).

    Add the following CSS to either your form definition or on the Google Forms setting page:

    label.ss-q-item-label {
        display: inline !important;
    }

    I would also add this as it will make sure your text boxes look correct in Firefox:

    input.ss-q-short, textarea.ss-q-long {
        width: 100%;
    }

    Hope that helps.

    Thread Starter brandonbrophy

    (@brandonbrophy)

    This fixed it! I really appreciate you taking the time to look into it and respond. Thanks so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Field titles not showing’ is closed to new replies.