Showing posts with label popular. Show all posts
Showing posts with label popular. Show all posts
Wednesday, March 15, 2017
Custom Popular Post Widget With Counter Box
Custom Popular Post Widget With Counter Box

This popular post widget will make your blog look nice wed help vistors easily navigate you posts.
Login to your blogger Dashboard>>click on Template>>>Edit Html.
On the blog Template click on it and click ctrl+f on windows and cmd+f on Mac.
First step=Adding javascrip to before </bod> tag.
Copy the code below, and paste it before the </body>tag in your template.
<script src=http://ift.tt/nkWzpa
ajax/libs/jquery/1.7.1/jquery.min.js
type=text/javascript/>
<script type=text/javascript>//<![CDATA[
$(document).ready(function() {
var tbn = 150;
$(#PopularPosts1).find(img).each
(function(n, image){
var image = $(image);
image.attr({src : image.attr(src).replace
(/sBd{2,4}/,s + tbn)});
image.attr(width,tbn);
image.attr(height,tbn);
});
});//]]></script>
Note : Back up your blog template first.
Customizing the thumbnail size. Simply change the highlited digit 150, to any number of your choice.
In this, our thumbnail size will be 150x150px.
Step two adding the css style code.
Simply chose any of your choice style code and paste it before the ]]></b:skin>
ajax/libs/jquery/1.7.1/jquery.min.js
type=text/javascript/>
<script type=text/javascript>//<![CDATA[
$(document).ready(function() {
var tbn = 150;
$(#PopularPosts1).find(img).each
(function(n, image){
var image = $(image);
image.attr({src : image.attr(src).replace
(/sBd{2,4}/,s + tbn)});
image.attr(width,tbn);
image.attr(height,tbn);
});
});//]]></script>
Note : Back up your blog template first.
Customizing the thumbnail size. Simply change the highlited digit 150, to any number of your choice.
In this, our thumbnail size will be 150x150px.
Step two adding the css style code.
Simply chose any of your choice style code and paste it before the ]]></b:skin>
Style One
/* Sidebar Popular Posts */
.sidebar .popular-posts ul {
counter-reset: popcount;
margin: 0;
padding: 0;
}
.sidebar .popular-posts ul li:first-child {}
.sidebar .popular-posts ul li {
font-family: "Oswald",sans-serif;
height: 130px;
font-weight: bold;
list-style: none !important;
overflow: hidden;
padding: 0px !important;
position: relative;
margin: 2px;
border: 0;
width: 100%;
float: left;
}
.sidebar .PopularPosts .item-thumbnail
{margin: 0; width: 100%;}
.sidebar .PopularPosts ul li img {
display: block;
float: left;
padding: 0;
width: 100%;
height: 130px;
-webkit-transition-duration: 1.0s; /
*Webkit: Animation duration*/
-moz-transition-duration: 1.0s; /*Mozilla
Animation duration*/
-o-transition-duration: 1.0s; /*Opera
Animation duration*/
transition:1.0s;
}
.sidebar .PopularPosts ul li img:hover {
-webkit-transform:scale(1.06); /*Webkit:
0.5 times the original Image size*/
-moz-transform:scale(1.06); /*Mozilla 0.5
times the original Image size*/
-o-transform:scale(1.06); /*Opera 0.5
times the original Image size*/
transform:scale(1.06);
overflow: hidden;
}
.sidebar .PopularPosts .item-title {
bottom:0;
left: 0;
right: 0;
padding-bottom: 0;
position: absolute;
z-index: 999;
}
.sidebar .PopularPosts .item-title a {
background: rgba(32, 32, 32, 0.77);
color: #FFFFFF;
display: block;
font-size: 16px;
font-weight: bold;
line-height: normal;
font-family: "Oswald",sans-serif;
padding: 10px 0px 5px 10px;
text-transform: capitalize;
transition: all .4s ease-in-out;
}
.sidebar .popular-posts ul li:hover .item-
title a {
color: rgba(255, 255, 255, 1);
background: rgba(231, 76, 60, 0.88);
text-decoration: none;
}
.sidebar .popular-posts ul li:before {
background: rgba(255, 252, 8, 1);
color: #000;
content: counter(popcount, decimal);
counter-increment: popcount;
float: left;
font-size: 14px;
line-height: 20px;
list-style-type: none;
padding: 0px 8px 1px 1px;
border-radius: 0px 0px 10px 0px;
position: absolute;
top: 0;
z-index: 4;
border: solid #FFF;border-width: 0px 2px 2px 0px;
Style Two
.sidebar .popular-posts ul {
counter-reset: popcount;
margin: 0;
padding: 0;
}
.sidebar .popular-posts ul li:first-child {}
.sidebar .popular-posts ul li {
font-family: "Oswald",sans-serif;
height: 130px;
font-weight: bold;
list-style: none !important;
overflow: hidden;
padding: 0px !important;
position: relative;
margin: 2px;
border: 0;
width: 100%;
float: left;
}
.sidebar .PopularPosts .item-thumbnail
{margin: 0; width: 100%;}
.sidebar .PopularPosts ul li img {
display: block;
float: left;
padding: 0;
width: 100%;
height: 130px;
-webkit-transition-duration: 1.0s; /
*Webkit: Animation duration*/
-moz-transition-duration: 1.0s; /*Mozilla
Animation duration*/
-o-transition-duration: 1.0s; /*Opera
Animation duration*/
transition:1.0s;
}
.sidebar .PopularPosts ul li img:hover {
-webkit-transform:scale(1.06); /*Webkit:
0.5 times the original Image size*/
-moz-transform:scale(1.06); /*Mozilla 0.5
times the original Image size*/
-o-transform:scale(1.06); /*Opera 0.5
times the original Image size*/
transform:scale(1.06);
overflow: hidden;
}
.sidebar .PopularPosts .item-title {
bottom:0;
left: 0;
right: 0;
padding-bottom: 0;
position: absolute;
z-index: 999;
}
.sidebar .PopularPosts .item-title a {
background: rgba(32, 32, 32, 0.77);
color: #FFFFFF;
display: block;
font-size: 16px;
font-weight: bold;
line-height: normal;
font-family: "Oswald",sans-serif;
padding: 10px 0px 5px 10px;
text-transform: capitalize;
transition: all .4s ease-in-out;
}
.sidebar .popular-posts ul li:hover .item-
title a {
color: rgba(255, 255, 255, 1);
background: rgba(231, 76, 60, 0.88);
text-decoration: none;
}
.sidebar .popular-posts ul li:before {
background: rgba(255, 252, 8, 1);
color: #000;
content: counter(popcount, decimal);
counter-increment: popcount;
float: left;
font-size: 14px;
line-height: 20px;
list-style-type: none;
padding: 0px 8px 1px 1px;
border-radius: 0px 0px 10px 0px;
position: absolute;
top: 0;
z-index: 4;
border: solid #FFF;border-width: 0px 2px 2px 0px;
Style Two
/* Sidebar Popular Posts - Style 1 */.sidebar .popular-posts ul {
counter-reset: popcount;
margin: 0;
padding: 0;
}
.sidebar .popular-posts ul li:first-child {}
.sidebar .popular-posts ul li {
font-family:Oswald,Open
Sans,Helvetica Neue,Arial,Tahoma,sans-
serif;
height: 130px;
list-style: none !important;
overflow: hidden;
padding: 0 !important;
position: relative;
margin: 2px;
border: 0;
width: 48%;
float: left;
}
.sidebar .PopularPosts .item-thumbnail
{margin: 0; width: 100%;}
.sidebar .PopularPosts ul li img {
display: block;
float: left;
padding: 0;
width: 100%;
height: 130px;
-webkit-transition-duration: 1.0s; /
*Webkit: Animation duration*/
-moz-transition-duration: 1.0s; /*Mozilla
Animation duration*/
-o-transition-duration: 1.0s; /*Opera
Animation duration*/
transition:1.0s;
}
.sidebar .PopularPosts ul li img:hover {
-webkit-transform:scale(1.06); /*Webkit:
0.5 times the original Image size*/
-moz-transform:scale(1.06); /*Mozilla 0.5
times the original Image size*/
-o-transform:scale(1.06); /*Opera 0.5
times the original Image size*/
transform:scale(1.06);
overflow: hidden;
}
.sidebar .PopularPosts .item-title {
bottom:0;
left: 0;
right: 0;
padding-bottom: 0;
position: absolute;
z-index: 999;
}
.sidebar .PopularPosts .item-title a {
background: rgba(32, 32, 32, 0.77);
color: #FFFFFF;
display: block;
font-size: 12px;
line-height: normal;
padding: 5px 0px 2px 5px;
text-transform: capitalize;
transition: all .4s ease-in-out;
}
.sidebar .popular-posts ul li:hover .item-
title a {
color: rgba(255, 255, 255, 1);
background: rgba(231, 76, 60, 0.88);
text-decoration: none;
}
.sidebar .popular-posts ul li:before {
background: rgba(255, 252, 8, 1);
color: #000;
content: counter(popcount, decimal);
counter-increment: popcount;
float: left;
font-size: 14px;
line-height: 20px;
list-style-type: none;
padding: 0px 8px 1px 1px;
border-radius: 0px 0px 10px 0px;
position: absolute;
top: 0;
z-index: 4;
border: solid #FFF;
border-width: 0px 2px 2px 0px;}
Now got to your blog Layout and change you popular post settings according to the Image Below.

posted from Bloggeroid
Available link for download
Sunday, January 22, 2017
Most Popular Passwords of 2014 If yours is among change it now!
Most Popular Passwords of 2014 If yours is among change it now!
Passwords are meant to be your unique key codes to prevent unauthourised use, it should not be easy to guess. It seems people still treat the choice of password with levity. Its all good till you get hacked, just ask Sony. Here are the 25 most used passwords of 2014.

This list shows the 25 most popular passwords as released in SplashDatas annual list which compiles the
1. 123456 (nil) 14. abc123 (Down 9)
2. password (nil) 15. 111111 (Down 8)
3. 12345 (Up 17) 16.mustang (New)
4. 12345678 (Down 1) 17. access (New)
5. qwerty (Down 1) 18. shadow (nil)
6. 123456789 (nil) 19. master (New)
7. 1234 (Up 9) 20. michael (New)
8. baseball (New) 21. superman (New)
9. dragon (New) 22. 696969 (New)
10. football (New) 23. 123123 (Down 12)
11. 1234567 (Down 4) 24. batman (New)
12. monkey (Up 5) 25. trustno1 (Down 1)
13. letmein (Up 1)
At this age and time, its quite unfortunate "123456" and "password" (Seriously??) still remains the most popular passwords. "12345" moved 17 places into third position as the third most popular password. There are 10 new entries to the list like famous superheroes "superman" (21st) and "batman" (24th).
If your password is included in the above, please change it. Dont use easy to guess words and minimize the use of the same passwords on different platforms. Remember the more important the platform the stronger your password should be. Its time to purchase more structured settlement by creating a strong password .
Drop your comments below!
Dont forget to share this post with your friends
Available link for download
Subscribe to:
Posts (Atom)