![]() |
| Contact Form for Blogger on Specific Static Page |
Now, I have a workaround solution will help you display contact form for Blogger on static page with css only. I will release many tips to make contact form with js, jquery, but now, please enjoy with CSS first.
Step 1: Add contact form gadget
Access your blog Layout. Click on any Add a Gadget link. An Add a Gadget window will be shown, click on More Gadgets, and choose add Contact Form.
On Configure Contact Form Widget window, click Save button.
| Add contact form for Blogger window |
| Then just save your contact form |
After added Contact form gadget, please drag and drop it below Blog Posts gadget, then click Save arrangement button.
| Drag and Drop contact gadget under Blog Posts and Save arrangement |
Step 2: Hide contact form widget
Access your blog Template, and click Edit HTML. In HTML editor, find
]]></b:skin>
Then, insert before with the code
.widget.ContactForm {
display: none;
}
| Open template editor and paste the code |
Step 3: Make contact page
Access Page, then create a blank page with a name mean “Contact” or any text you want.
| Add Contact Page |
In page editor, switch to HTML mode and paste the below code into content field
<style type="text/css">
.widget.ContactForm {
display: block;
}
.post-footer {
display: none;
}
#blog-pager {
display: none;
}
.blog-feeds {
display: none;
}
.widget.ContactForm .title {
display: none;
}
.widget.ContactForm * {
max-width: 100%;
}
</style>
Then Publish the page.
| Add code to static page |
Now, you can access your new page and enjoy your contact form.

![[feature] Contact Form for Blogger on Specific Static Page Contact Form for Blogger on Specific Static Page](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGtu6n87Q-_JMJ9a6kvRheg5UAfPj0M3GI5vzDLCBglkRrgtYimHTlvapkSFd1WMjwm9ilmlwTlkUOfxCfW1atkDAIKy2-LAZJy8keLTt0sesU-_XgqGTk1VEC8GDO4QihyphenhyphenowPjCeVPQ/s640/Contact+Form+for+Blogger+on+Specific+Static+Page.png)








