Sunday 5 April 2015

How to add contact form in blogger page using foxy form





In this post you will know how to add a contact form in blogger page using foxy form.



Steps

1. Go to www.foxyform.com and configure your form options.
2. Generate code and copy the code
3. Create a new page in blogger blog (name it contact or contact us)
4. Click the HTML view and paste the code
5. Publish the page


That's it.

Watch the video tutorial.






Thursday 2 April 2015

How to add a contact form in Blogger blog in a satic page without using any third party service

Adding contact form in blogger static page.

Three steps process:

1. Add contact fomr
2. Hide contact form from sidebar
3. Add HTML code in a blogger static page to show the contact form


► Step 1

Adding contact form

1. Go to layout
2. Add a contact fomr
3. Save arrangement

The contact form has been added to the sidebar.

► Step 2

We will be hiding the contact form from sidebar.

1. Go to Template
2.  Do a Ctrl + F and search for ]]></b:skin>
3. Right above that add the below code

#ContactForm1
{
display: none! important;
}

4. Save template

Note: Backup your template before making changes to the template.


► Step 3

1. Add a new static page
2. Click the HTML view and add the below code

<form name="contact-form">
<p></p>
Your Name:<br />
<input class="contact-form-name" id="ContactForm1_contact-form-name" name="name" size="30" value="" type="text" />
<p></p>
Your Email:
<span style="font-weight: bolder;color:red;">*</span><br />
<input class="contact-form-email" id="ContactForm1_contact-form-email" name="email" size="30" value="" type="text" />
<p></p>
Your Message: <span style="font-weight: bolder;color:red;">*</span><br />
<textarea class="contact-form-email-message"  id="ContactForm1_contact-form-email-message" name="email-message" cols="25" rows="5"></textarea>
<p></p>
<input class="contact-form-button contact-form-button-submit" id="ContactForm1_contact-form-submit" value="Send" type="button" />
<p></p>
<div style="text-align: center; max-width: 222px; width: 100%">
<p class="contact-form-error-message" id="ContactForm1_contact-form-error-message"></p>
<p class="contact-form-success-message" id="ContactForm1_contact-form-success-message"></p>
</div>
</form>



3. Save and publish the page.

Note: Make sure under options the  line break is set to <br> tag and not Enter.


That's it!


[Codes: source]

Friday 27 March 2015

How to Redirect Blogpost.in to Blogspot.com

Google redirects Blogger blogs to country specific domain extension. For example, if you open bloggertutorialshub.blogspot.com in your browser, you might be redirected to bloggertutorailshub.blogspot.in if you are located in India.


If you don't want your blog to be redirected to your country specific location and want to keep it as default .com extension, then you need to place a piece of code in your template HTML to stop the redirection. 
1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag. - See more at: http://nannodesign.blogspot.in/2013/05/how-to-redirect-blogspotin-to.html#sthash.XfCkbr0h.dpuf
1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag. - See more at: http://nannodesign.blogspot.in/2013/05/how-to-redirect-blogspotin-to.html#sthash.XfCkbr0h.dpuf
1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag. - See more at: http://nannodesign.blogspot.in/2013/05/how-to-redirect-blogspotin-to.html#sthash.XfCkbr0h.dpuf


 1. Go to Blogger dashboard
2. Click on Template
3. Click on Edit HTML
4. Press Ctrl + F and find <head>
5. Copy and paste the below code right after the <head> tag.
1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag. - See more at: http://nannodesign.blogspot.in/2013/05/how-to-redirect-blogspotin-to.html#sthash.XfCkbr0h.dpuf
1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag. - See more at: http://nannodesign.blogspot.in/2013/05/how-to-redirect-blogspotin-to.html#sthash.XfCkbr0h.dpuf


1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag. - See more at: http://nannodesign.blogspot.in/2013/05/how-to-redirect-blogspotin-to.html#sthash.XfCkbr0h.dpuf
Here's the code:
        <script type="text/javascript">
        var blog = document.location.hostname.split(".");
        if (blog[blog.length - 1] != "com") {
        var ncr = "http://" + blog[0] + ".blogspot.com/ncr";
        window.location.replace(ncr + document.location.pathname);
        }
        </script>


    Now click on Save Template and now your Blogger Blog will automatically redirects to the blogspot.com extension. 

    That's it!


    - Code Source