Form Heading CSS Selectors

Container

Contains the form title and description

  • example: the form heading section (div) – applies to all forms
    body .gform_wrapper .gform_heading { border: 1px solid red }
  • example: the form heading section (div) – applies just to form ID #1

body #gform_wrapper_1 .gform_heading { border: 1px solid red }

Title

  • example: the form title (h3) – applies to all forms

body .gform_wrapper .gform_heading .gform_title { color: red }
  • example: the form title (h3) – applies just to form ID #1

  • body #gform_wrapper_1 .gform_heading .gform_title { color: red }

    Description

    • example: the form description (span) – applies to all forms

    body .gform_wrapper .gform_heading .gform_description { border: 1px solid red }
  • example: the form description (span) – applies just to form ID #1

  • body #gform_wrapper_1 .gform_heading .gform_description { border: 1px solid red }