How To Hide The Title In Google Forms – Step-by-Step Guide

//

Thomas

Affiliate disclosure: As an Amazon Associate, we may earn commissions from qualifying Amazon.com purchases

Discover multiple methods to hide the title in Google Forms. Follow our step-by-step guide using CSS, Script Editor, and Google Apps Script for customizing your form’s appearance.

How to Hide the Title in Google Forms

Using CSS to Hide the Title

Google Forms provides a simple and intuitive way to create surveys and collect data. However, you may want to hide the title of your form for various reasons. One method to accomplish this is by using Cascading Style Sheets (CSS).

CSS is a coding language that allows you to customize the appearance of web pages. By modifying the CSS of your Google Form, you can hide the title and create a more streamlined design.

Here are the steps to hide the title using CSS:

  1. Open your Google Form and go to the “Edit” mode.
  2. Click on the “Customize Theme” button located at the top right corner of the page.
  3. In the sidebar that appears, click on the “Custom CSS” tab.
  4. Enter the following CSS code:
header.freebirdFormviewerViewHeader {
display: none;
}

Click on the “Save” button to apply the changes.

By adding this CSS code, you are targeting the header element of the form and setting its display property to “none,” effectively hiding the title.

Removing the Title with Script Editor

Another method to hide the title in Google Forms is by utilizing the Script Editor feature. This method requires a basic understanding of JavaScript.

Here’s how you can remove the title using the Script Editor:

  1. Open your Google Form and go to the “Edit” mode.
  2. Click on the “More” button (represented by three vertical dots) located at the top right corner of the page.
  3. Select “Script editor” from the drop-down menu. This will open the Script Editor in a new tab.
  4. Delete any existing code in the editor and replace it with the following JavaScript code:

JAVASCRIPT

function onOpen() {
var form = FormApp.getActiveForm();
form.setTitle("");
}

Click on the “Save” button to save the script.

By running this script, you are accessing the active form and using the setTitle method to set the title of the form to an empty string, effectively removing it.

Hiding the Title with Google Apps Script

If you want to hide the title programmatically without using the Script Editor, you can achieve this by using Google Apps Script. Google Apps Script is a JavaScript-based platform that allows you to automate tasks and extend functionality within Google Workspace.

Here’s how you can hide the title using Google Apps Script:

  1. Open your Google Form and go to the “Edit” mode.
  2. Click on the “More” button (represented by three vertical dots) located at the top right corner of the page.
  3. Select “Script editor” from the drop-down menu. This will open the Script Editor in a new tab.
  4. Delete any existing code in the editor and replace it with the following Google Apps Script code:

JAVASCRIPT

function hideTitle() {
var form = FormApp.getActiveForm();
form.setTitle("");
}

Click on the “Save” button to save the script.

By creating this Google Apps Script, you can now run the hideTitle function to hide the title of your form.

Customizing the Form Appearance

In addition to hiding the title, you may also want to customize the appearance of your Google Form to match your branding or desired aesthetic.

Google Forms provides various customization options, including changing the background color, font styles, and adding images. To access these customization options, follow these steps:

  1. Open your Google Form and go to the “Edit” mode.
  2. Click on the “Customize Theme” button located at the top right corner of the page.
  3. In the sidebar that appears, you can choose a pre-defined theme or customize individual elements such as background color, font style, and more.
  4. Make the desired changes and click on the “Save” button to apply the customizations.

By customizing the form appearance, you can create a more visually appealing and cohesive form that aligns with your branding or personal style.

In conclusion, hiding the title in Google Forms can be achieved using CSS, the Script Editor, or Google Apps Script. Additionally, you have the option to further customize the form appearance to create a unique and engaging user experience.

Leave a Comment

Connect

Subscribe

Join our email list to receive the latest updates.