ss_blog_claim=752cdf4fa7cc7b60527b400da1af07d5

Written on July 3rd, 2010 at 12:51 pm by Shunmugha

4 Comments

feedburner form customization

Any blogger strives to write quality content there by driving good traffic to his/her site.Writing quality contents is bound to convert causal readers in to regular readers making them subscribe to the site feed.
But its always said looks do matter it can bring even more better results.Rightly placed Subscription form and Beautifully designed Subscription form can impact a huge difference in results.In this post lets see how to spice up looks and gracefulness of your FeedBurner Email Subscription Forms.

1.Background

Background Color:To change background color of your Feed Burner all you need is to add this line in your Css.

.formcolor{

background:#Color-code none repeat scroll 0 0;

}

And wrap your form code with div tag.

<div class="formcolor">Feedburner Form code</div>

Background Image:To change background image of your Feed Burner all you need is to add this line in your Css.

.formbkg{

background-image: url(image url);

}

And wrap your form code with div tag.

<div class="formbkg">Feedburner Form code</div>


2.Rounded Edges and Borders

Round Edges add more grace to your form.Lets see how to do it.

Add the below code to your CSS

.rounded{
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
-moz-border-radius-bottomleft:8px;
-moz-border-radius-bottomright:8px;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
border:5px solid #000000;
margin:6px 0 20px;
padding:20px;
}

And wrap the div tag around Feed burner code.


3.OnFocus

Emptying TextArea:

Initially you can assign text to textarea which can be emptied once user click on the TextBox using the following code.

<input name="email" type="text" <strong> onfocus="this.value=''" </strong> value="Enter your email id.."/>

Highlighting TextBox onFoucus:

Text area can be Highlighted on Focus this the below code in CSS.

#highlight  textarea:focus, #sign input:focus {
border:2px ridge #990000;
}

And wrapping div tag around Form Code.

<div id="highlight">Feedburner code</div>


4.Hover Effects

You can change the color off the subscribe button by using the following code in CSS.

.button:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#Color-Code none repeat scroll 0 0;
}

And wrap the button field with div tag as usual.


Hope the tutorial was useful.Start customizing you feedburner Form from now on.Share your thoughts .How useful was it to you?

, , ,

4 Responses to “Spicing Up FeedBurner Form Looks for Better Results”


  1. Kaila S

    1 month ago

    Great tips. I agree, adding some spice and uniqueness to your feedburner form can be helpful in getting that user to subscribe.


  2. Shunmugha

    1 month ago

    Thanks a lot :) Hope u found it useful…


  3. SQL Training

    4 weeks ago

    Wow, this is cool. Having a good looking feedburner form can certainly make the readers sign up for our feeds. Thanks for sharing the tip

1 Trackbacks For This Post

  1. Tweets that mention Customizing the FeedBurner Email Subscription Form | Technobuz -- Topsy.com Says:

    [...] This post was mentioned on Twitter by Harsh Agrawal. Harsh Agrawal said: RT @shamrocksu88: Spicing Up FeedBurner Form Looks for Better Results http://bit.ly/9ZGPeH Nice read [...]

Leave a Reply