Gravity Forms Hide Form Title

Feb 28, 2024

2 Min. Read

Share URL

This page may contain affiliate links. Please read my disclaimer for more information.

Problem

By default, when you embed a Gravity Forms form on your site, the form title is displayed on the page just above the form. But what if you want to hide form title from displaying once you’ve embedded the form?

Solution

You can disable the form title, but how you do that will depend on how you’ve embedded the form. I’ll share three ways you can hide the form title.

#1 Shortcode

If you use the form shortcode to embed the form you can hide or disable the form title by switching title=”true” to title=”false“.

[gravityform id="1" title="false"]

#2 Block Editor

If you use the block editor to embed your forms you can simply toggle the title off in the block settings.

#3 CSS

It is recommended that you use one of the options shared above when possible, but if for some reason you’re not able to, you can use the CSS snippet below.

This snippet will be applied to all forms:

body .gform_wrapper h2.gform_title {
    display: none !important;
}

If you want to apply the CSS to a specific form, you’ll need to use the snippet below, be sure to replace the 1 with your forms ID number.

body #gform_wrapper_1 h2.gform_title {
    display: none !important;
}

FAQs

I’m using a page builder like Elementor

If you are using a page builder to embed the form, and you’re not using the shortcode, then the page builder or another plugin has added a Gravity Forms element to the page builder. If that is the case, you should be able to toggle the title off within the element like you can with the block editor.

Need More Help?

If you have an active Gravity Forms license, you can also open a support ticket here.

You are always welcome to use the comments or chat and we’ll get back to you.

Photo of author
About the Author
Chris Eggleston
Husband. Father of 4. Grandpa of 2. Chief Problem Solver exploring business systems, technology, AI & faith — helping people solve real problems. @mantiswp @chrisegg

Support Chris - Donate $5

Gravity Wiz Add-Ons

Advertisement

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Post

Styling Gravity Forms Radio Buttons Like Toggle Switch

Problem I recently had someone ask if it was possible to style radio buttons like a toggle switch in Gravity...

Mar 17, 2026

4 min. read

Automatically Switch from a Registration Form to a Waitlist in Gravity Forms

This tutorial shows you how to automatically switch from a registration form to a waitlist form in Gravity Forms using entry limits or attendee tracking with a custom shortcode.

Sep 29, 2025

4 min. read

Using AI + Gravity Forms to Streamline Job Applications

Hiring is tough. Sorting through dozens, or even hundreds, of job applications is time-consuming, repetitive, and prone to human bias. That’s where combining Gravity Forms, Gravity Flow, and AI automation comes in.

Sep 26, 2025

2 min. read

Turn Gravity Forms Image Choice Field into carousel

Problem Recently, I saw a Gravity Forms user looking for a way to style the new Image Choice field. Specifically,...

Jul 14, 2025

3 min. read

Offer Subscription With One-Off Add-On Product Options with Gravity Forms

Want to offer a subscription + one-time add-ons in Gravity Forms? Here’s how to do it using Stripe’s setup fee feature in a single payment feed.

Mar 24, 2025

2 min. read

Gravity Forms A/B Split Testing

Problem We recently received an interesting request from a Gravity Forms user who wanted to know how to do A/B...

Mar 21, 2025

5 min. read