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

css, google-forms

Solution

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

- Create a Google Form.

- Get the link and open the form in a new tab.

- Create a barebone form having same items as the Google form.

- Inspect Google form for `action` attribute.

- a. Copy the same action to your form.

- Inspect and find values for attributes `name` in the Google form.

- a. Give the same name values for your form items as well. The values look like `entry.742532386`.

- Check if your form gets the responses.

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

Read more here

Problem

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?

Original source

Related problems