• Ian

    (@iancrasta)


    Hey,

    Thank you for the awesome plugin! I need some help with my form at https://www.illustrationmuch.com/kbi/?wpgform_qv=287

    1. How do I remove the post Author and Date from the top?
    2. The only options for the section titles are H1 and H2. How do I customize it to something else? Those tags are already being used in other parts of the website.
    3. The Asterisks are showing up on a separate line. How do I keep it inline with the question and mark it red? I’ve already added the display:inline-flex part to the CSS.
    4. How do I increase the width of the text boxes?

    Awaiting your response.

    Thank you!!

    https://www.ads-software.com/plugins/wpgform/

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

    (@mpwalsh8)

    1. The post author and date are part of your theme. You could do this using Google Forms Custom CSS:
      article.post-287 p.p-meta {
          display: none;
      }
    2. You can’t. At least not easily. You can map H1 tags to H2 but there isn’t anything else supported as far as remapping H1 and H2 tags to something else. If you are clever with jQuery you could do it.
    3. Add the following Custom CSS:
      div.ss-q-title > label {
          display: inline;
      }
    4. Add the following Custom CSS:
      input.ss-q-short, textarea.ss-q-long {
          width: 300px;
      }
    5. Make sure you enable Custom CSS on the Google Forms settings page (Dashboard > Settings > Google Forms) or you custom CSS won’t have any effect.

    Thread Starter Ian

    (@iancrasta)

    Thanks for that! I’ve disabled the H1 to H2 mapping right now, but the section titles still show up as H2. Any chance I can keep these at H1?

    Plugin Author Mike Walsh

    (@mpwalsh8)

    The tags are left unchanged from the form they are delivered by Google when the HTML for the form is read unless the “Map H1 to H2” option is selected. If you look at the source form in Google Drive, what element are the sections using? It should be the same when it is rendered within WordPress.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Section Titles’ is closed to new replies.