Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 963
YellowSmurf Avatar asked May 12 '16 10:05

YellowSmurf


People also ask

How do I change the CSS in Google Forms?

Right-click any element in the Google Form and choose Inspect Element . Next, switch to the Styles panel and experiment with different styles for colors, padding, font-size and any other CSS property. You can then copy the CSS and paste it into the custom CSS section.

How do I customize the UI in Google Forms?

Clicking on the gear icon next to the Form title and the form fields will show you more options to customize. 6. Click the gear icon next to the form title, "Training Registration" to open up the side bar that has customization options for the form. Click on the "Layout" tab to change the layout to 2-column.

Can you Customise Google Forms?

Google Forms offers limited customization. You can use the theme option to upload a header image, change the theme color, background color and font. If you need more customization options, you can use the Formfacade add-on for Google Forms.


Video Answer


1 Answers

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

like image 132
Sharath kumar Avatar answered Oct 05 '22 11:10

Sharath kumar