Wednesday, April 2, 2014

4 Stylish Custom Popular Posts Widgets to Blogger

Popular posts widget is one of the most commonly used widgets on each and every blog. Blogger has its own default popular posts widget for its blogs but this widget is not very attractive. It displays a simple list of popular posts without any customization in it.. For this reason it looks very ugly and effects the whole design of the blog. But one good thing about this widget is that it can be easily customized by using CSS code. In this post we will discuss 4 different styles for customizing default popular posts widget in blogger.   

Adding popular posts widget to blogger:
• Go to your blogger dashboard.
• Select Template option.
• Select Edit HTML.
• In the template code find ]]></b:skin>
• Just above it paste code of one of the following popular posts widget and save the template.


Style A:

Code (Style A):

.popular-posts ul{padding-left:0px;}
    .popular-posts ul li {
    list-style-type: none;
    margin:0 0 5px 0px;
    padding:5px 5px 5px 20px !important;
    border: 1px solid #dddddd;
           -moz-box-shadow:1px 1px 2px #dcdcdc;
-web-kit-box-shadow: 1px 1px 2px #dcdcdc;
-goog-ms-box-shadow:1px 1px 2px #dcdcdc;
box-shadow:1px 1px 2px #dcdcdc;
border-radius:5px;
background: rgb(44,83,158); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(44,83,158,1) 0%, rgba(44,83,158,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(44,83,158,1)), color-stop(100%,rgba(44,83,158,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(44,83,158,1) 0%,rgba(44,83,158,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c539e', endColorstr='#2c539e',GradientType=0 ); /* IE6-9 */
    }
 
    .popular-posts ul li:hover {
      -moz-box-shadow:1px 1px 2px #dcdcdc;
-web-kit-box-shadow: 1px 1px 2px #dcdcdc;
-goog-ms-box-shadow:1px 1px 2px #dcdcdc;
box-shadow:2px 2px 4px #333333;
    border:1px solid #333333;
color:#fff;
    }
 
.popular-posts ul li a
{
text-decoration:none;
font:16px Georgia, verdana;
color:#ffffff;
}
    .popular-posts ul li a:hover {
    text-decoration:none;
   
    }

Style B:

Code (Style B):

.popular-posts ul{padding-left:0px;}
    .popular-posts ul li {background: #ffffff  no-repeat scroll 5px 10px;
    list-style-type: none;
    margin:0 0 5px 0px;
    padding:5px 5px 5px 20px !important;
    border: 1px solid #dddddd;
    border-radius:7px;
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
    }
    .popular-posts ul li:hover {
        border:1px solid #555555;
    }
 
.popular-posts ul li a
{
text-decoration:none;
font:16px Georgia, verdana;
color:#333333;
}
    .popular-posts ul li a:hover {
    text-decoration:none;
    color:#555555;
    }

Style C:

Code (Style C):

.popular-posts ul{padding-left:0px;}
    .popular-posts ul li {background: #FFF  no-repeat scroll 5px 10px;
    list-style-type: none;
    margin:0 0 5px 0px;
    padding:5px 5px 5px 20px !important;
    border: 1px solid #dcdcdc;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
 
    }
 
    .popular-posts ul li:hover {
    
    background:#FF8040;
 
    }
 
.popular-posts ul li a
{
text-decoration:none;
font:14px Georgia, verdana;
color:#222222;
}
    .popular-posts ul li a:hover {
    text-decoration:none;
    color:#fff;
    }

Style D:

Code (Style D):

.popular-posts ul
{
padding-left:0px;
    -moz-box-shadow:1px 1px 2px #dcdcdc;
-web-kit-box-shadow: 1px 1px 2px #dcdcdc;
-goog-ms-box-shadow:1px 1px 2px #dcdcdc;
box-shadow:1px 1px 2px #dcdcdc;
 border: 1px solid #dcdcdc;
 
}
    .popular-posts ul li {
    list-style-type: none;
    margin:0 0 5px 0px;
    padding:5px 5px 5px 20px !important;
   border-bottom:1px dashed #dcdcdc;
       background:#ffffff;
    }
 
  .popular-posts ul li a
{
 
text-decoration:none;
font:16px georgia,verdana;
color:#3d87c4;
}
 
    .popular-posts ul li a:hover {
    text-decoration:none;
    color:#333333;
    }

How to Add Sticky Notification bar to Blogger


Sticky Notification Bar for Blogger

Sticky Notification bar is the best way to highlight the latest topics or updates of any blog.It sits on the top of blog and display latest and popular stories of blog and attracts blog visitors to check out the popular articles of a blog without any headache.It also helps in increasing page views of the blog.This guide is about adding a simple CSS powered Sticky Notification bar to Blogger blogs.

Features of our sticky notification bar
1. Stylish and attractive design.
2. Inbuilt close button for hiding the bar.
3. Light weight CSS and small JavaScript code.
4. Easily customizable according to your blog design.
5. Easy integration with blogger blogs.
6. It do not slow blog`s loading speed.

Add this notification bar to blogger:
• Log in to your Blogger dashboard.
• Select your blog.
• Select Template.
• Click Edit Html and then click Proceed.
• Tick Expand Widgets.
• In the Template Code search for </body>
• Paste following code just above the </body>


<style>

#wcsticky-container {
  height:46px;
  width:100%;
 position:fixed;
z-index:99999;
  top: 0px;
left:0px;
 background:#222222;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
color:#ffffff;
 border-bottom:solid 2px green;
-moz-box-shadow:5px 5px 5px #333333;
-web-kit-box-shadow: 5px 5px 5px #333333;
-goog-ms-box-shadow: 5px 5px 5px #333333;
box-shadow:3px 2px 4px green;
}

#wc-stickylinks
{
color:green;
font:14px verdana;
margin-top:12px;
margin-left:20px;
text-decoration:none;
}
#wc-stickylinks a
{
font:14px verdana;
color:#ffffff;
text-decoration:none;
}
#wcstickyclose
{
float:right;
margin-top:15px;
margin-right:20px;
}
#wcstickyclose a
{
color:#ffffff;
text-decoration:none;
font:14px verdana;
padding:3px;
background:red;
border-radius:10px;
}
#wcsticky-main
{float:left;
}
</style>
<script language='JavaScript'>
function closesticky() {
document.getElementById("wcsticky-container").style.visibility = "hidden";
}

</script>

<div id='wcsticky-container'>
<div id="wcsticky-main">
<p id='wc-stickylinks'> Popular Topics:<a href='http://ablogfortuts.blogspot.com/search/label/money%20making'>  Make money online</a> | <a href='http://ablogfortuts.blogspot.com/2014/04/how-to-add-sticky-notification-bar-to.html'>Get this notification bar</a></p>
</div>
<div id="wcstickyclose">
<a href="javascript:closesticky();" >X</a>
</div>
  </div>

After pasting the code save the template and open your blog to see the new notification bar in action.


SOURCE

Watch Thor The Dark World 2013 HD - Download Link Available

Note: Click download image and complete a very short survey.

Distributed by:
Walt Disney Studios & Motion Pictures

Genre:
Fantasy, Action, Adventure

Synopsis:
Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all. (From IMDB)

Casts:
Chris Hemsworth
Natalie Portman
Tom Hiddleston
Anthony Hopkins
Stellan Skarsgård
Idris Elba
Christopher Eccleston
Adewale Akinnuoye-Agbaje
Kat Dennings
Ray Stevenson
Zachary Levi
Tadanobu Asano
Jaimie Alexander
Rene Russo

Directed by:
Alan Taylor

Description:
Thor The Dark World Download Free Full Movie, Watch the newest thor the dark world movie here, Online streams and download link for the whole movie are available download now

Tags:
thor 2, thor the dark world downlaod free, thor the dark world full movie, thor the dark world full movie download, thor: the dark world, watch thor the dark world, watch thor the dark world free

Clickbank Atlas - Earn Thousands of Dollars in Clickbank

 


Description:
Clickbank Atlas harnesses a revolutionary technique that has a beginner earning over $100 a day,every day.

Keywords:
clickbank atlas review, clickbank atlas bonus,clickbank atlas,devin zander

Article Marketing Robot - Marketing Tool For Instant Article

 


Description:
Article Marketing Robot is a completely automated backlink building tool to help drive your website to the top of the search engine rankings. Backlinks that come from a huge variety of article directories.

Using the power of Article Marketing Robot, you can get the most out of the articles that you write by submitting them, then rewriting them, and then resubmitting them.

Once your articles become published and found by the search engines, you will begin to generate essential backlinks that are required for your website to get noticed. When your website is noticed, you start to get traffic. When you get traffic, you make money.

Tags:
Article Marketing Robot 2.0.0.3, Article Marketing Robot crack, Article Marketing Robot free, Article Marketing Robot download, Article Marketing Robot licence, Article Marketing Robot key, Article Marketing Robot full, Article Marketing Robot working, Article Marketing Robot torrent, Article Marketing Robot serial

SEO Powersuite Enterprise - SEO tool



We've seen organic search engine traffic triple!

I am very impressed with SEO PowerSuite tools. Not only are the programs updated with phenomenal frequency to make sure we have the latest and greatest search engine intelligence, but new features are added all the time.

An excellent return on our investment. We've seen organic search engine traffic triple since using the tools to measure and improve our site. 
Brandon SmithOwner, OpenGate Software

Tags:
SEO PowerSuite examples, SEO PowerSuite screenshots, best search engine optimization software, search engine optimization tools

Xrumer - Best SEO Tools

 


Description:
XRumer is a software application that automatically posts your messages to forums, guestbooks, bulletin boards and catalogs of the links (as well as into livejournals and wiki). In a word it is an autosubmitter. Xrumer is the best SEO tool for creating THOUSANDS of backlinks automatically.

Tags:
XRumer 5.09, XRumer crack, XRumer free, XRumer download, XRumer licence, XRumer key, XRumer full, XRumer working, XRumer torrent, XRumer serial

Senuke XCr

 

Description:
SENuke XCr is the most powerful SEO automation software ever. All you have to do is customize your strategy and let it run on its own. It allows your website to compete with the most highly ranked websites, even websites that have been running for years collecting countless backlinks. All it requires you to do is customize a few settings and click “finish” and SENuke XCr automates your website promotion campaign for you! Then you can get on with your day and the software will break a leg building links for your site.

Tags:
SENuke XCr 3.1.44, SENuke XCr crack, SENukeXCr free, SENuke XCr download, SENukeXCr licence, SENuke XCr key, SENukeXCr full, SENuke XCr working, SENuke XCr torrent, SENukeXCr serial

HMA Proxy Grabber - Free Proxy Download

 


Description:
An extremely lightweight program to get live proxy servers. 

This tool just leeches the proxies from HideMyAss.com, collecting all the proxies and its data. Simple and easy to use proxy grabber!

Tags:
HMA Proxy Grabber 2.0, HMA Proxy Grabber, Proxy Grabber crack, Proxy Grabber free, Proxy Grabber download, Proxy Grabber licence, Proxy Grabber key, Proxy Grabber full, Proxy Grabber working, Proxy Grabber torrent, Proxy Grabber serial

 

Prophone Blogger Template - Free Template Download



Description:
ProPhone is a 2 column blogger template with her nice header and color too gives to you an tranquile impression. We recomend you to communicate through this template. Use it.

Features: 
2 columns with right sidebars

widgets ready

business

social icons

featured posts

search box

2 columns blogger templates,business blogger templates,personal blogger templates,blogger template
 

Gameblack Blogger Template - Free Template Download

 


Description:
Game Black is Blogger template for games related sites. This theme is very complicated at the very first site but if you look closely you will find that everything has their perfect spot. Basically this theme is designed for those persons who like playing games because at the background you will see a battle field and at the center a soldier that is ready to take your command. It has 3 columns, left and right sidebar. Recommended for games blog.

Game Black template has by default pages on menu, but also you can add and custom links, since blogger support it.

Features:
    Featured Slider-Show Content – to show your favorite post above the content, simple to edit from blogger panel

    Ads banners ready – monetize your site, accepted Google ads and any HTML / script code

    Popular posts in sidebar with thumbnail

    Social icons, easy to edit through option panel

    Colors – black, gray, blue

3 columns blogger templates,games blogger templates,blogger template

NewGray Blogger Template - Free Template Download

 


Description:
New Gray is a new Blogger template for personal related sites. This template is absolutely brighter and have colors that fit perfectly with each other. The background is like a skin of a snake and it has gray color instead the header has a light blue color. It is very personal theme so you can use it for your personal stuff. It has 3 columns, left and right sidebar. Recommended for business or tech blog.

New Gray template has by default pages on menu, but also you can add and custom links, since blogger support it.

Features:

    Featured Slider-Show Content – to show your favorite post above the content, simple to edit from blogger panel

    Ads banners ready – monetize your site, accepted Google ads and any HTML / script code

    Popular posts in sidebar with thumbnail

    Social icons, easy to edit through option panel

    Colors – blue, white, gray

3 columns blogger templates,personal blogger templates,blogger template

BlueRed Blogger Template - Free Template Download

 


Description:
Blue Red is Blogger template for personal related sites. This theme has 3 columns with left and right sidebars. The combination of the blue and red color make this template very personal and adapt for you to use it for your personal stuff and there it is plenty of place for you to say everything you want. Recommended for personal blog.

Blue Red template has by default pages on menu, but also you can add and custom links, since blogger support it.

Features:
    Featured Slider-Show Content – to show your favorite post above the content, simple to edit from blogger panel

    Ads banners ready – monetize your site, accepted Google ads and any HTML / script code

    Popular posts in sidebar with thumbnail

    Social icons, easy to edit through option panel

    Colors – blue, red

3 columns blogger templates,personal blogger templates,blogger template

BlackBlue Blogger Template - Free Template Download

 


Description:
Black Blue is Blogger template for tech or business related sites. This template has dark blue color at the background, and some sparkle of light spread on it. The header is totally black. It has 3 columns, left and right sidebar. This template is very simple and in it’s complex you can use it for business or for your high technology stuff. Recommended for business or tech blog.

Black Blue template has by default pages on menu, but also you can add and custom links, since blogger support it.

Features:
    Featured Slider-Show Content – to show your favorite post above the content, simple to edit from blogger panel

    Ads banners ready – monetize your site, accepted Google ads and any HTML / script code

    Popular posts in sidebar with thumbnail

    Social icons, easy to edit through option panel

    Colors – black and blue

3 columns blogger templates,tech blogger templates,blogger template

SimpleColor Wordpress Template - Free Template Download

 


Description:
Simple Color is a new WordPress theme for business related blogs and websites. This theme has 3 column left and right sidebar, it is well organized and has a lot of space where you can put your stuff. It has simple and very well combine color. The design of this theme is made for one purpose, just to do business with it. The light blue on the background is combine with the dark blue at the header. Recommended for business blog.

Simple Color theme has by default pages on primary menu, but this theme support WordPress menu, so you can easy edit them, and can place on same menu pages, categories and other links.

Features:
    Admin Options V4 panel – which make it easy to customize your site

    Custom homepage – Make your site to look pro

    Full Width Page – Create pages without sidebars

    Sitemap – Sitemap ready for your site

    Featured Slider-Show Content – to show your favorite post above the content, simple to edit from admin option

    Ads banners ready – monetize your site, accepted Google ads and any HTML / script code

    Logo .PSD included – simple just edit the text through your Photoshop

    Facebook and Twitter Widget enabled – Show your Facebook and Twitter friends

    Popular posts in sidebar with thumbnail

    Social icons, easy to edit through option panel

    Colors –blue, white

3 columns wordpress themes,business wordpress themes,tech wordpress themes,wordpress theme


 
Blogger Templates
X