I always keep an eye on the posts over at the Search Engine Roundtable. A few days back there was a post about Google Panda 2.5.2, so I checked my stats.

My fitness blog has been affected, but I'm not sure exactly how it will affect the bottom line (sales/profits).   It seems I'm getting more traffic from image searches and less from keywords--kind of like what happened with the original Panda algorithm.

But it's a little too early to tell exactly how this will affect me, and I'm sure other updates will come along.    I'll just do my best to produce quality content in an SEO friendly manner.   I'm not going to worry over stuff I can't control.
Continue Reading

Step 1: Logo Design Draft Concepts

After you’ve filled out your initial design information for LogoNerds, you will have to wait a couple of days for their first set of concepts. I always go with their $47 “Professional Business Logo” package since it comes with 6 different draft designs (and print ready images). The most exciting part of the logo design process is when you get those first drafts and have an idea where your logo is headed.

Step 2: Critique and Logo Revisions

Depending on the web site or job, sometimes I will just select one of their first drafts and go with that logo. This time around I knew I wanted something really great for the site, so I worked with LogoNerds to create the perfect logo. After looking at all of the logos for a couple days, and asking friends and family which logo they liked best, and why, I decided to go with CONCEPT 1 (top left). I thought it was simple enough to get the point across, but also fun and brandable at the same time.
I told LogoNerds that I would like to see if they could play around with the bone structure in the background and if they could create a new variation of the dog and cat faces. You can see their revision update below.

The new bone looked much better, and I liked the new cat and dog face even more. From there I gave the LogoNerds team a few ideas on how what colors to add into the logo. Their color update is shown below.

Step 3: Text Logo Revisions

The logo is looking pretty good now, and could be considered finished, but I still wasn’t loving the “PetFoodia.com” text beneath the logo. I then requested the team try and create something nice that would go along with the logo.
The next set of finished logos with a new font design can be seen below.
While some of the font designs looks nice, none of them blew me away. I like the concept on the bottom left logo, but it just didn’t look right. Once again, I went back to the LogoNerds team to request another text revision set, this time with “more simple” text concepts. Within a couple days I had another set, which you can see below.

I was much happier with this set of designs. They were much less advanced and colorful as the previous set, but I wanted something simple and to the point. I decided on the bottom left logo with, and to remove the tagline from the logo.

Step 4: Completed Logo / Files Recieved

After the thorough design and revision process, I was extremely happy with the end result. You can see the final logo below.

LogoNerds would complete the order and send over a final design zip with a variation of different sizes, colors and file types.
After looking over the whole process, and how many times I asked LogoNerds for a revision, it’s quite amazing the service they can offer for only $47.
Continue Reading

So many blogs and websites i visit these days have implemented a pop up subscription form for their newsletter.I'm sure you have seen it, you land on a site and after a few seconds a form appears asking for your Email to subscribe.While these can annoy some people they have been proven to have a dramatic effect on the numbers of subscribers.In this post i will show you how to add a similar form to your Blogger blog but with a form to subscribe to your blog via Email Rss provided by feedburner.The form is a one time pop up so if someone visits your blog every day it will remember they visited before and not show the form again.

This tutorial was originally posted on the excellent Simplex Design blog so make sure to check them out.Below you can see a live demo.

View Demo Button

Add The Pop Up Subscription Box To Blogger


Remember Always Back Up Your Template Before You Make Changes - How To Back Up A Blogger Template

Step 1. In Your Blogger Dashboard Click Design > Edit Html

Design Edit Html Blogger

Step 2. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code )

]]></b:skin>

Step 3. Copy and Paste the following code Directly Above / Before ]]></b:skin>

Note - This is a scroll box make sure to get all the code.
/*Subscription Pop Up Css*/
#popupContactClose{
cursor: pointer;
text-decoration:none;
}
#backgroundPopup{
display:none;
position:fixed;
_position:absolute; /* hack for internet explorer 6*/
height:100%;
width:100%;
top:0;
left:0;
background:#000000;
border:1px solid #cecece;
z-index:1;
}
#popupContact{
display:none;
position:fixed;
_position:absolute; /* hack for internet explorer 6*/
height:384px;
width:408px;
background:#FFFFFF;
border:2px solid #cecece;
z-index:2;
padding:12px;
font-size:13px;
}
#popupContact h1{
text-align:left;
color:#6FA5FD;
font-size:22px;
font-weight:700;
border-bottom:1px dotted #D3D3D3;
padding-bottom:2px;
margin-bottom:20px;
}
#popupContactClose{
font-size:14px;
line-height:14px;
right:6px;
top:4px;
position:absolute;
color:#6fa5fd;
font-weight:700;
display:block;
}
/*End Subscription Pop Up Css @ http://www.PromoteYourBlogger.co.cc */

Step 4. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code)

</head>

Step 5. Now Copy And Paste This Code Directly Above / Before </head>

<!--Pop Up Subscription-->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js' type='text/javascript'/>
<script src='http://dinhquanghuy.110mb.com/jquery.cookie.js' type='text/javascript'/>
<script type='text/javascript'>
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
centerPopup();
//loads popup only if it is disabled
if(popupStatus==0){
$(&quot;#backgroundPopup&quot;).css({
&quot;opacity&quot;: &quot;0.7&quot;
});
$(&quot;#backgroundPopup&quot;).fadeIn(&quot;slow&quot;);
$(&quot;#popupContact&quot;).fadeIn(&quot;slow&quot;);
popupStatus = 1;
}
}

//disabling popup with jQuery magic!
function disablePopup(){
//disables popup only if it is enabled
if(popupStatus==1){
$(&quot;#backgroundPopup&quot;).fadeOut(&quot;slow&quot;);
$(&quot;#popupContact&quot;).fadeOut(&quot;slow&quot;);
popupStatus = 0;
}
}

//centering popup
function centerPopup(){
//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var windowscrolltop = document.documentElement.scrollTop;
var windowscrollleft = document.documentElement.scrollLeft;
var popupHeight = $(&quot;#popupContact&quot;).height();
var popupWidth = $(&quot;#popupContact&quot;).width();
var toppos = windowHeight/2-popupHeight/2+windowscrolltop;
var leftpos = windowWidth/2-popupWidth/2+windowscrollleft;
//centering
$(&quot;#popupContact&quot;).css({
&quot;position&quot;: &quot;absolute&quot;,
&quot;top&quot;: toppos,
&quot;left&quot;: leftpos
});
//only need force for IE6

$(&quot;#backgroundPopup&quot;).css({
&quot;height&quot;: windowHeight
});

}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
if ($.cookie(&quot;anewsletter&quot;) != 1) {

//load popup
setTimeout(&quot;loadPopup()&quot;,5000);
}
//CLOSING POPUP
//Click the x event!
$(&quot;#popupContactClose&quot;).click(function(){
disablePopup();
$.cookie(&quot;anewsletter&quot;, &quot;1&quot;, { expires: 7 });
});
//Click out event!
$(&quot;#backgroundPopup&quot;).click(function(){
disablePopup();
$.cookie(&quot;anewsletter&quot;, &quot;1&quot;, { expires: 7 });
});
//Press Escape event!
$(document).keypress(function(e){
if(e.keyCode==27 &amp;&amp; popupStatus==1){
disablePopup();
$.cookie(&quot;anewsletter&quot;, &quot;1&quot;, { expires: 7 });
}
});

});
</script>
<!--End Pop Up Subscription @ http://www.PromoteYourBlogger.co.cc -->

Step 6. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code)

</body>

Step 7. Copy and Paste the following code Directly Above / Before </body>

<div id='popupContact'>
<a id='popupContactClose'>x</a>
<h1>Get Our Latest Posts Via Email - It&#39;s Free</h1>
<p id='contactArea'><form action='http://feedburner.google.com/fb/a/mailverify' method='post' onsubmit='window.open(&apos;http://feedburner.google.com/fb/a/mailverify?uri=PromoteYourBlogger&apos;, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true' style='border:1px solid #ccc;padding:3px;text-align:center;' target='popupwindow'><p>Enter your email address:</p><p><input name='email' style='width:140px' type='text'/></p><input name='uri' type='hidden' value='PromoteYourBlogger'/><input name='loc' type='hidden' value='en_US'/><input type='submit' value='Subscribe'/><p>Delivered by <a href='http://feedburner.google.com' target='_blank'>FeedBurner</a></p></form></p>
</div>
<div id='backgroundPopup'/>

Important - You need to change our feedburner username with yours.The username for your feed can be found at the end of your feed URL.For example the our feedburner URL is http://feeds.feedburner.com/PromoteYourBlogger , with PromoteYourBlogger being the username.

That's it all thanks go to Simplex Design.
Continue Reading
In the last post i brought you news of how Blogger had just added Lightbox to all Blogger Blogs.While lightbox is a neat way for people to view images in your posts it has not been to every ones taste.I have received a few comments and Emails asking is their a way to turn off light box or disable lightbox.This morning i spent some time trying to work a simple line of Css to override lightbox but to no avail.However i did come across a hack on another blog that does the job perfectly.

This hack is from the blog Code from an English Coffee Drinker (Love the title make sure to check it out) and it works a charm.I also have a video tutorial at the bottom of the post.


Override Lightbox On Blogger Blogs


Step 1. In Your Blogger Dashboard Click Design > Add A Gadget > Choose Html/Javascript







Step 2. Copy And Paste The Following Code Into The Html/Javascript Gadget Form

<script type="text/javascript">
//<![CDATA[
function killLightbox() {
var images = document.getElementsByTagName('img');
for (var i = 0 ; i < images.length ; ++i) {
images[i].onmousemove=function() {
var html = this.parentNode.innerHTML;
this.parentNode.innerHTML = html;
};
}
}

if (window.addEventListener) {
window.addEventListener('load',killLightbox,false);
} else {
window.attachEvent('onload',killLightbox);
}
//]]>
</script>

Step 3. Save The Gadget, You don't need to give it a title.

Video Tutorial





That's it Lightbox is gone and images will be displayed as before.All the thanks for this goes to Code from an English Coffee Drinker.
Continue Reading

When you start your blog you may have no conception of how long you're going to be doing this for or the time and effort that it is going to take on your part, but when you become a seasoned blogger, you'll be able to look back (and look forward) and see your personal seasonal rhythms with your blog.

We all have our ups and downs and habits that we get into, and our blogs will reflect that over time. Right now, it's getting into fall, and for a a lot of people summer is one of two extremes - it is either the time where you're lazy and don't maintain your blog as much, or you're coasting along with your blog because everyone is engaged and involved. After this, you're going to have to make one transition or another - either get more involved with your blog and write more or expect less involvement from your audience. Or you're one of those lucky few that get consistent involvement year round - know I strongly dislike you.

For those who are just starting - know that you will likely get into routines in different seasons (the weather may not correlate...but it will happen.) Blogs have life cycles and phases just as a business does. You'll probably get into a winter funk, and there will be some bumps and scrapes along the way - balancing life, work and blog isn't always easy.

As I said, your seasons may not match what you're seeing outside of the window, but you really should take note of what kind of life cycle your blog has, where the ups and downs and peaks and valleys usually occur. If you don't notice these things, your blog could become completely stale or irrelevant without you noticing. Years will run by you, and your blog hasn't grown or evolved at all. Maybe you don't get to know your audience, or haven't don't any kind of SEO, but SEO is a whole 'nother topic.

Just as a fact of life in the real-world seasons of Fall and Winter, you will be faced with a lot more holidays - from Halloween to Christmas. You'll need to decide to what degree you're going to want to share your personal experiences of the holidays, or the ways in which you're going to allow the holidays you do (or don't) celebrate color your content.


Winter

The winter of your blog is a test of discipline. Long days and little to show, at this point you're just trying to get through your posting schedule. You don't have the heart to start any new promotions or launch any new projects. You just slog through the mud and keep on keepin' on. Do you have the devotion to really keep doing this blog? Your winter is your benchmark.

Spring

Spring - buds are blooming, birds are chirping, the sun is shining. In short, things are looking better. You've got new subscribers or maybe you just got pitched a great promotional deal, but things are going so much better than they were. Whatever is making you excited about your blog again, you're posting so much more and are engaged and active, riding on cloud 9.

Summer

As I've mentioned earlier, the summer of your blog (which likely corresponds to the actual season) can be one of two things. Either you're hot and lazy and kind of abandon ship with your blog, posting less frequently, engaging less often, or you're continuing the high of summer and you could almost be on vacation because things with your blog are evolving so naturally and everything is going so easily.

Fall

The fall of your blog is the time that you need to take to analyze your blog. Do you need a new design? (Do you want a new design?) Do you need to reach out to a different audience? Guest post somewhere? Start in on a new topic or a new angle? Fall is the time to ask those questions, and figure out what is going on a bit deeper with your blog - figure out how to grow it, how to nurture it.

Don't forget your blog is a reflection of you, and you go through cycles and rhythms. Follow them, understand them. Don't try and fight them or get frustrated with it. Ups and downs happen with everything. Keep in mind the larger picture of you and your blog and how they fit together - and a big part of that is identifying and acknowledging the rhythms that your blog goes through.
Continue Reading

Internal Links
Here’s an easy way to create internal links for your blog. Do so and you will in no timekeep your bloggers blogging, increase your viewership, and achieve higher search engine rankings.
Follow these simple suggestions to build internal links and help your blog gain greater success:-
  1. Create links in your most viewed posts
  2. For starters build internal links for your most popular posts and pages. These posts are moreoften visited by readers, so take the opportunity to lead them to your other posts. You can do so by manually inserting the links or with the help of plug-ins. In this way you can ensure the reader who likes your work gets to read more of your work by just clicking on the internal links.
  3. Furnish your pages with links of relevant information
  4. Once the reader has read your post, it is most likely that he will want to know more on the topic. You can provide him/her with this chance by creating links of any relevant or related posts. It would be advantageous if these links are from your own blogs, probably older postsand are manually added rather than through plug-ins. Thus the reader can find all he wants to know on your blog and at the same time you can enjoy extensive readership.
  5. Create series and sitemaps
  6. Readers do not like to read very long posts. It is best to have short posts and arrange them in a series, each series carrying links to the previous ones. Moreover, it is beneficial to provide the reader with a sitemap as it will help him/her to navigate through your blog and also give you chance to provide more number of internal links.This will help you to lead the readers in the direction you like, to promote your other posts, and increase your readership.
  7. Create links at the end of posting threads
  8. When you have completed posting on a particular topic, you will most likely conclude the thread through a single post. This post can carry internal links to the previous ones and other related postings. You will thus attract the reader to read other posts on the topic.
  9. Use 404 pages to your advantage
  10. Certain blogs may trouble you with error pages. These pages can be edited and used for posting. You can then insert them as internal links on your other pages.
Continue Reading
In the last post i showed you how to use the Pascal Theme Nivo Slider on Blogger.So in this post i have the second of the three Nivo themes, the default nivo slider.The default theme while looking more basic still has the cool transitions and other options like pop up captions.The slider is from Dev7 Studios and you can see the live demo below.

View Demo Button


Add The Default Theme Nivo Slider To Blogger


Remember Always Back Up Your Template Before You Make Changes
Design Edit Html Blogger

Step 2. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code )

]]></b:skin>

Step 3. Copy and Paste the following code Directly Above / Before ]]></b:skin>

Important - This is a scroll box make sure to get all the code.
/*Start Slider Css*/
#slider-wrapper {
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlpfU4OeWOGf89OHZDTm2YfHVnfTnpbTuwEiD5Piw-POYkmMJQOzv6GtDaHx3iZ6c9BC662fbN9UEfAC3dbWrWAeSfzhrxiDERhvpDzg0jSGu62txZPf6C-0K6MwTti3GjoHGXs2RUQXex/s1600/loading.gif) no-repeat;
width:998px;
height:392px;
margin:0 auto;
padding-top:74px;
margin-top:50px;
}
#slider {
position:relative;
width:618px;
height:246px;
margin-left:190px;
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlpfU4OeWOGf89OHZDTm2YfHVnfTnpbTuwEiD5Piw-POYkmMJQOzv6GtDaHx3iZ6c9BC662fbN9UEfAC3dbWrWAeSfzhrxiDERhvpDzg0jSGu62txZPf6C-0K6MwTti3GjoHGXs2RUQXex/s1600/loading.gif) no-repeat 50% 50%;
}
#slider img {
position:absolute;
top:0px;
left:0px;
display:none;
}
#slider a {
border:0;
display:block;
}
.nivo-controlNav {
position:absolute;
left:260px;
bottom:-42px;
}
.nivo-controlNav a {
display:block;
width:22px;
height:22px;
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_7Dpvu7OX_TWHeVsRsCTjS9DBDfU3Ijx2yHggyE2G3RLznRbB0WPT0-XmmyYBn92mK0lhVVOZkF9XUwYip9V4UoqhoR1C8iCMCln2THJUk4Wli87NixHSq6toMYOEo4C6n-RzaNHd0cbZ/s1600/bullets.png) no-repeat;
text-indent:-9999px;
border:0;
margin-right:3px;
float:left;
}
.nivo-controlNav a.active {
background-position:0 -22px;
}
.nivo-directionNav a {
display:block;
width:30px;
height:30px;
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiatPJiWnLVi6YRe4-JLVR-PIvWSCKN9cbCF17O0QbiyX8h6jwfqE-nOgaMxUKuLcT69nT1x1GoSMC8QLfghFW9r6epzN1PxS4KNlQPiW9VpivHPBOMizVM46wkXAOqv_poljPXP3pUdh7y/s1600/arrows.png) no-repeat;
text-indent:-9999px;
border:0;
}
a.nivo-nextNav {
background-position:-30px 0;
right:15px;
}
a.nivo-prevNav {
left:15px;
}
.nivo-caption {
text-shadow:none;
font-family: Helvetica, Arial, sans-serif;
}
.nivo-caption a {
color:#efe9d1;
text-decoration:underline;
}
/* The Nivo Slider styles */
.nivoSlider {
position:relative;
}
.nivoSlider img {
position:absolute;
top:0px;
left:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
border:0;
padding:0;
margin:0;
z-index:6;
display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
display:block;
position:absolute;
z-index:5;
height:100%;
}
.nivo-box {
display:block;
position:absolute;
z-index:5;
}
/* Caption styles */
.nivo-caption {
position:absolute;
left:0px;
bottom:0px;
background:#000;
color:#fff;
opacity:0.8; /* Overridden by captionOpacity setting */
width:100%;
z-index:8;
}
.nivo-caption p {
padding:5px;
margin:0;
}
.nivo-caption a {
display:inline !important;
}
.nivo-html-caption {
display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
position:absolute;
top:45%;
z-index:9;
cursor:pointer;
}
.nivo-prevNav {
left:0px;
}
.nivo-nextNav {
right:0px;
}
.nivo-directionNav a {
display:block;
width:30px;
height:30px;
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiatPJiWnLVi6YRe4-JLVR-PIvWSCKN9cbCF17O0QbiyX8h6jwfqE-nOgaMxUKuLcT69nT1x1GoSMC8QLfghFW9r6epzN1PxS4KNlQPiW9VpivHPBOMizVM46wkXAOqv_poljPXP3pUdh7y/s1600/arrows.png) no-repeat;
text-indent:-9999px;
border:0;
}
a.nivo-nextNav {
background-position:-30px 0;
right:15px;
}
a.nivo-prevNav {
left:15px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
position:relative;
z-index:9;
cursor:pointer;
}
.nivo-controlNav a.active {
font-weight:bold;
}
.nivo-controlNav a {
display:block;
width:22px;
height:22px;
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_7Dpvu7OX_TWHeVsRsCTjS9DBDfU3Ijx2yHggyE2G3RLznRbB0WPT0-XmmyYBn92mK0lhVVOZkF9XUwYip9V4UoqhoR1C8iCMCln2THJUk4Wli87NixHSq6toMYOEo4C6n-RzaNHd0cbZ/s1600/bullets.png) no-repeat;
text-indent:-9999px;
border:0;
margin-right:3px;
float:left;
}
/* End Slider Css, Info @ http://www.spiceupyourblog.com */


Step 4. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code )

</head>


Step 5. Now Copy And Paste This Code Directly Above / Before </head>

If you have previously added jQuery to your template you can leave out the line in green.
<script src='http://code.jquery.com/jquery-1.6.1.min.js' type='text/javascript'/>
<script src='http://yourjavascript.com/8855314511/jquery.nivo.slider.pack.js' type='text/javascript'/>
<script type='text/javascript'>
$(window).load(function() {
$(&#39;#slider&#39;).nivoSlider();
});
</script>


Step 6. Save Your Template.

That's the Css and Scripts added we now add the Html for the slides.

We will be adding the slider across your blog below the header.This area is called Cross Column and can be seen in the image below.


Adding HTML For The Slides


The HTML for the slides goes in a Html/Javascript gadget in the cross column section as shown above.

Below is the html for the slider in the demo.There is no really easy way to explain it so you will need to take a minute to figure out the code.I have the URLs (The Destination of the slide when clicked) is in red, the image is in green and the caption (Optional) is in yellow.Each slide works in the same way, you can just copy and paste this code and replace the URL, Image and captions.To add extra slides you can repeat one of the sections and once again add your URL, Image and Caption.

&lt;div id="slider">
&lt;a href="http://www.spiceupyourblog.com">&lt;img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSN8OlHTuyRo4rhU4NG3gNoP8Fg2ZGTVBjBe5DJw-CRfTnXrjGBs341BCCyWJIHtvHw9FG6fnjvZhBr6GXyUOZSjmlaoWLpj6ws_8gxk5PUf3df0NlMoA6eDtOzL37kXUbUjZHTELjGzo/s1600/toystory.jpg" title="This Is A Caption" />&lt;/a>

&lt;a href="http://www.spiceupyourblog.com">&lt;img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYdKl-NiFwiKrYLkkIYPwSYeFPjfFtE31R6X-txrRc7sJfZfdL1rlXc38E59FmFPn1LJMJZAMfFqiKnR0Q0orPtGrWahQFXkJoEkMQtcNBPm3KmiLhkn67lDmFvx6dxaQ_neA1Ogy9BdI/s1600/up.jpg" title="This Is Another Caption" />&lt;/a>

&lt;a href="http://www.spiceupyourblog.com">&lt;img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKzPSIhc7H6gx9lJ1IWsMeneonmy-rauhshH_QB3yLl74n5fzZKyDe98v4iROzZfeCWX8qDcP-SFLcmY30bdfGrJdr1XgVcOZiW_95SIbmV9QfwvNP-ufDnFWWKwcIENbmFA22eIHinJQ/s1600/walle.jpg" title="This is an example of a caption" />&lt;/a>

&lt;a href="http://www.spiceupyourblog.com">&lt;img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirTvol7JXtKqLS3yR2zETM1Uy0tcqZ8IdopWsL5NVp2bl4RK5aSaPMblVxX5nSlbbh6Qz9qiKUvg91k5zDnv7Ya-yKIxCixSbv_Wif8Pmsivtn5vm9nfBV4BQoR6Hyeb9p5Uf_u8FM8Po/s1600/nemo.jpg" title="This is another Caption" />&lt;/a>
&lt;/div>

I have 4 slides in the demo you can add more by repeating a section and once again add your URL, Image and caption.

That's the default Nivo jQuery Featured Posts Slider For Blogger.Make sure to check out more of our jQuery tutorials and Blogger Tips.
Continue Reading
Next Home
 
PROMOTE YOUR BLOGGER 100% Working Tips And Tricks Updated EveryDay