YellowSmurf
YellowSmurf

Reputation: 227

Is there a way to edit css of new google forms?

Before I used to be able to just copy the source code of the form and paste the part between <form></form> into the page and add my own styling. But this doesn't seem to work anymore. Has anyone found a way to still be able to customize google forms?

Upvotes: 20

Views: 50892

Answers (2)

439545
439545

Reputation: 31

Google forms does not currently (mar-2021) have a built in feature to add css or javascript to their forms.

I created this GitHub project to work around the problem: https://github.com/calledit/google_form_javascript_css

Upvotes: 3

Sharath kumar
Sharath kumar

Reputation: 1166

Yes, you can easily make the <form> work by following these steps.

  1. Create a Google Form.
  2. Get the link and open the form in a new tab.
  3. Create a barebone form having same items as the Google form.
  4. Inspect Google form for action attribute.
    1. a. Copy the same action to your form.
  5. Inspect and find values for attributes name in the Google form.
    1. a. Give the same name values for your form items as well. The values look like entry.742532386.
  6. Check if your form gets the responses.

Since it is a native <form> element, apply CSS however you want to.

Read more here

Upvotes: 26

Related Questions