Thứ Hai, 31 tháng 8, 2015

Blogger Author Widget with CSS3

Blogger Author Widget with CSS3

Blogger Author Widget with CSS3 - in this tutorial i shared a author widget for blogger. Yeah! its a great tutorial for all bloggers admin. Specially this tutorial my helpful for who run personal blog. A beautiful widget is only for you. Flat, Clean and responsive.

Also Read: Blogger Author Bio box with Social icons


You should add 4 social icons with your links. Twitter, Facebook, Dribble and Google Plus icons. This widget will work with CSS3 transition hover effect. When you mouse hover on this widget, then it open other part. Its social icons part. If you wanna see a demo, look at our first widget.

Now lets start. Go to Blogger Dashboard > Template > Edit HTML > and past below CSS before </style>
 @import url(http://weloveiconfonts.com/api/?family=entypo);
[class*=&quot;entypo-&quot;]:before {font-family: &#39;entypo&#39;, sans-serif;}
*{ box-sizing: border-box; }
a { text-decoration: none; transition: all .4s; }
.container { margin: 0 auto; }
.container:hover .author-body { height: 70px; }
.author-body a {color:#fff}
.author2 { overflow: auto; padding: 20px; background: #fff; border-radius: 5px 5px 0 0; font-size:12px; color: #b9becd; }
.author2:before { content: &quot;&quot;; display: block; float: left; width: 80px; height: 80px; margin-right: 20px; background: url(&quot;http://i.imgur.com/rppvYgh.jpg&quot;) no-repeat; background-size: 80px; border-radius: 100%; }
.author2 h1 { margin: 15px 0 5px; font-weight: 100; font-size:20px; color: #5e6d81; }
.author-body { height: 0; background: #323a45; color: #fff; vertical-align: middle; transition: all .3s; }
.author-body a { display: inline-block; width: 25%; height: 100%; padding: 20px; border-right: 1px solid rgba(255,255,255,.25); text-align: center; color: #fff; font-size: 2.5em}
.author-body a:hover { background: #515761; }
.author-body a:last-child { border-right: none; }
.foot { /*height: 100px;*/ }
[class^=&quot;footItem&quot;] { display: inline-block; width: 33.333333%; padding: 15px 0; text-align: center; color: rgba(255,255,255,.8); font-size: 1.1em; }
[class^=&quot;footItem&quot;] span { display: block; font-size: 1.6em; margin-bottom: 5px; color: #fff; }
.footItem1 { background: #14b9d6; color: white!important;}
.footItem1:hover { background: #5bcee2; }
.footItem2 { background: #f27935; color: white!important; }
.footItem2:hover { background: #f6a172; }
.footItem3 { background: #1fbba6; color: white!important;}
.footItem3:hover { background: #63d0c1; }
.widget-content { box-shadow: 0 0 0 1px #D3D3D3;}
.section:first-child .widget:first-child {margin-bottom:15px}



Note: Change highlighted image link with your profile picture image's link.

Now Save Template.


After saving template go to Layout > Add a gadget > HTML/Javascript and past below code.
 <div class="container">
<div class="author2">
<h1>Muhammad Subel</h1>
The Designer
</div>
<div class="author-body">
<a href="#Twitter-LINK"><span class="entypo-twitter"></span></a><a href="#Facebook-LINK"><span class="entypo-facebook"></span></a><a href="#Dribble-LINK"><span class="entypo-dribbble"></span></a><a href="#GooglePlus-LINK><span class="entypo-gplus"></span></a>
</div>
<div class="foot">
<a href="#" class="footItem1"><span class="entypo-heart"></span>102</a><a href="#" class="footItem2"><span class="entypo-user"></span>4,587</a><a href="#" class="footItem3"><span class="entypo-plus"></span>84,023</a>
</div>
</div>



Note: Change the name and social links with yours. That's it.

Thứ Năm, 20 tháng 8, 2015

Nicer Social icons Widget with hover effect for Blogger

Blogger social icons with hover effect

Social icons are most important part of any blog now-a-days. We see any where any website and any apps, they promote their social media links with attractive social icons. In this tutorial, we take a look of creating a beautiful and simple social icons widget with hover effect for Blogspot Blogger. I already named this widget: Nicer Social Icons Widget with hover effect for Blogger.


 Also Read: Flat Social Share Button for Blogger


This is an easiest way to promote your social media links with your targeted users. If you make widget in top with these social icons, then a user see these social icons easily. If you can connect your targeted users with your social links, like: Facebook, Twitter, Google plus then you should easily increase your visitors.

Nicer Social icons widget is a simple blogger gadget to show your social media links in sidebar. The icons are Facebook, google plus and Twitter widget. 





Marking Up Nicer Icons


People have different ways of structuring how an icon should exist in the markup. In this tutorial, the icons actually link to somewhere else, so I'll be using the a tag to house the icons. For presentational icon markup (like icons before headings and such), I've seen a lot of people use the i tag. Even though it's not semantic, it is very performant as it's a one-lettered tag. For this tutorial, we're going to use icons that link elsewhere, because links are associated with hover states. The most common set of icons around the web that act as familiar links are social icons. I'll use the following 5 so that we can see different icons in action for each of the demos:
  • Facebook
  • Twitter
  • Google plus

Now lets start this tutorial. Before starting this tutorial take a backup of your template.
Now Go to Blogger Dashboard > Template > Edit HTML and past the below CSS Code before </style>
 .icon {
display: inline-block;
vertical-align: top;
overflow: hidden;
margin: 4px;
width: 92px;
height: 96px;
font-size: 0;
text-indent: -9999px;
background-color: #404040;
}

.icon-border {
position: relative;
}

.icon-border::before,
.icon-border::after {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: &quot;&quot;;
}

.icon-border::before {
z-index: 1;
-webkit-transition: box-shadow 0.3s;
transition: box-shadow 0.3s;
}

.icon-border::after {
z-index: 2;
background: url(&quot;http://i.imgur.com/gOZiqfy.png&quot;);
background-image: url(&quot;http://callmenick.com/_development/icons-css3-transitions/img/icons4.svg&quot;), none;
}

/* facebook */
.icon-border.facebook::before {
box-shadow: inset 0 0 0 48px #3b5998;
}

.icon-border.facebook:hover::before {
box-shadow: inset 0 0 0 4px #3b5998;
}

.icon-border.facebook::after {
background-position: 0 0;
}

/* twitter */
.icon-border.twitter::before {
box-shadow: inset 0 0 0 48px #4099ff;
}

.icon-border.twitter:hover::before {
box-shadow: inset 0 0 0 4px #4099ff;
}

.icon-border.twitter::after {
background-position: -96px 0;
}

/* google plus */
.icon-border.googleplus::before {
box-shadow: inset 0 0 0 48px #d34836;
}

.icon-border.googleplus:hover::before {
box-shadow: inset 0 0 0 4px #d34836;
}

.icon-border.googleplus::after {
background-position: -192px 0;
}


Now Save Template.

After that, Go to Layout> Add a gadget > HTML/Javascript past below code and edit all # tag with your social links.
<a href="#" class="icon icon-border facebook">facebook</a>
<a href="#" class="icon icon-border twitter">twitter</a>
<a href="#" class="icon icon-border googleplus">google+</a>




Reference: http://callmenick.com/post/nicer-icon-hover-effects-with-css3-transitions

Thứ Ba, 11 tháng 8, 2015

10 Best Magazine/Newspaper Responsive Blogspot Blogger Templates 2016

Tags
Hello friends, hope all are fine. Today i will share Top 10 Magazine/Newspaper Responsive blogger template in this year. Day by day blogger increasing their awesome features and blogger users are also increasing hugely. You  know, blogger is a free and most popular blogging platform. Every one can make a awesome and professional blog with blogger easily. You can make any kind of blog with blogspot blogger like, Blogging,  Newspaper, Magazine, e-Commerce, Personal One page site, Corporate or business site etc. The review of blogger best magazine themes.

In this session i will share top 10 themeforest and other magazine and newspaper type blogger template. Using these templates you may make a professional blog in low budget. 

Now lets start...


1. MagOne - Magazine Blogger Template

MagOne - Magazine Blogger Template

One of the best magazine blogger template. MagOne template is flexible and responsive magazine template for Blogger / Blogspot websites. Drag and drop to build a magazine website in minute. You may use this template blogger for any magazine or newspaper blog.



2. Brand Mag - Responsive Blogger News/Magazine

Brand Mag - Responsive Blogger News/Magazine

Brand Mag is a Premium Blogger Template with Responsive layout and suited for magazine blogs. It’s design with modern style, simple color combination, clean and modern look, and has been built by using some of the most popular current design trends. It’s perfect choise for many types of magazine blogs. Easy to customize, ideal for everyone who starts or has launched such a blog.



3. SNews - News/Magazine Responsive Blogger Theme

SNews - News/Magazine Responsive Blogger Theme


SNews is the most efficient blogger theme for your magazine , news editorial, newspaper website. It has a lot of option that magazine website need. For example ability to change layout for each categories, breadcrumbs for post and category, social widget, post widget that has many options to sort and much more. This theme shows you how cool and flexible blogspot magazine theme can be. You can turn your magazine website into any possibilities you can think of.




4. MaxBlog - Responsive Magazine Blogger Theme

MaxBlog - Responsive Magazine Blogger Theme


MaxBlog is a another awesome magazine and newspaper blogger template. Maxblog has a widgetized with 24 widgets each widget is super flexible with multi styles and lyouts. This make the theme very flexible. It has an amazing builder to help you build your blocks easily.




5. Grid Plus - Grid Style Responsive Grid Style Blogger Template

Grid Plus - Grid Style Responsive Grid Style Blogger Template

GridPlus is responsive grid style magazine blogger template. If you wanna make a professional magazine blog, then GridPlus will perfect choice. This template have some awesome features like, Recent Post Carousel, Mag style home layout box, News Ticker etc. GridPlus is 100% clean, SEO optimized and fully responsive design. Its compatible with many devices. First time we use dynamic and powerful admin panel in this template. You should easily customize and setup your blog. GridPlus have 3 magazine style home layout box. You can display specific label post on homepage with magazine style. Recent post Carousel is also awesome. Recent post or specific label post, anything you can use on carousel.



6. Stand Mag - Responsive Blogger Magazine

Stand Mag - Responsive Blogger Magazine


Stand Mag is a Premium Blogger Template with Responsive layout and suited for magazine blogs. It’s design with modern style, simple color combination, clean and modern look, and has been built by using some of the most popular current design trends. It’s perfect choise for many types of magazine blogs. Easy to customize, ideal for everyone who starts or has launched such a blog.



7. Setiva - Responsive Magazine Blogger Template

Setiva - Responsive Magazine Blogger Template

Setiva blogger template is a another beautiful and modern blogger template. its clean and fresh flat color based responsive blogger design and high user friendly blogger template.This theme perfect for news, magazine and personal websites.



8. Deco Mag - Responsive Magazine Blogger Template

Deco Mag - Responsive Magazine Blogger Template

Deco mag blogger template is a another beautiful modern blogger template. its clean and fresh flat color based responsive blogger design and high user friendly blogger template.This theme perfect for news, magazine and personal websites.



9. Mega Mag - Responsive Magazine Blogger Template

Mega Mag - Responsive Magazine Blogger Template

Mega mag blogger template is a another beautiful modern blogger template. its clean and fresh style responsive blogger design and high user friendly blogger template.This theme perfect for news, magazine and personal websites.


10. Slash - Tech/Magazine Blogger Template

Slash - Tech/Magazine Blogger Template

Slash is a clean, customizable and feature rich blogger template that can be used for categories such as Technology, Magazine, Entertainment Blogs and much more. With the all new Mega Menu you can quickly show related post to your visitor for each category. The 3 columned responsive layout of this template help you add a whole lot of info on your front page. On Hover Featured slider is another cool feature of this blog where you can put the best of your content for maximum exposure.





That's it. If you found any problem or broken link, then inform me in comment section. Hope these templates will helpful for you. If you like this post, then don't forget to share with others. Thanks...

Thứ Bảy, 1 tháng 8, 2015

New Mashable Mashshare Social Sharing Widget For Blogger

New Mashable Mashshare Social Sharing Widget For Blogger


Yeah! Here it is present. New Mashable Mashshare Social Sharing Widget For Blogger - in this session i will share a topic with you about Mashable Mashshare sharing widget for blogger. In this tutorial i shared this, how to add mashable mashshare in blogger.

Also Read: Flat Social Share Button for Blogger


This thing made by Sharrre (you can visit their website for further information). When i visit some website, then i see this type of widget. Although those websites are wordpress base. You know wordpress plugins are not supported in blogger. Recently i hard tried to make a Mashable Mashshare social sharing widget for blogger. I succeed but some resource are founded from internet those are freeware.

Blogtyrant  published a review about Mashable Mashshare. Although he published this review about wordpress plugin. But you found a main features about this widget from his review.


Now lets start this tutorial. Before starting work, please keep a backup file of your template for safety.

Go to Blogger Dashboard > Template > Edit HTML and copy past below CSS before ]]></b:skin>
 #sharrrrre{float:left;margin:0 5px 0 0;padding:8px;border-right:1px solid silver}
.sharrre .count{color:#7fc04c;font-weight:700;display:block;font-size:50px;position:relative;text-align:center;text-decoration:none;width:100px;line-height:40px;padding:0}
.sharrre .share{color:#666;display:block;font-size:10px;height:10px;text-align:center;text-decoration:none;width:100px;padding:0}
.social-div a{text-decoration:none!important;display:inline-block}
.social-div a img{display:inline-block;width:auto;height:auto;margin:0 8px 0 -5px;vertical-align:middle}
#socialshare{display:inline-block;vertical-align:middle;text-align:center;color:#fff;font-size:16px;padding:14px 20px 15px;text-decoration:none;font-family:Open Sans;margin-right:5px;-webkit-font-smoothing:antialiased;-webkit-text-rendering:optimizeLegibility;text-transform:uppercase}
#socialshare:active{padding:15px 20px;margin-bottom:-1px}
#socialshare:hover{opacity: 0.9;}
.share-toggle{position:relative;display:inline-block;cursor:pointer;vertical-align:middle;text-align:center;color:#fff}
.share-toggle a{color:#fff;text-decoration:none;}
.social-div{vertical-align:middle;margin: 25px;}
#expand-social{display:inline-block;position:relative;vertical-align:middle;height:53px}
#social-expand{display:inline-block;vertical-align:middle;position:relative;top:0;left:0}
.expand{background:#FF4949;position:relative;width:40px;height:40px;line-height:40px;font-size:200%}
.expand:active{box-shadow:0 1px 0 0 #c5bebe;height:41px;margin-bottom:-1px}
.expand:hover{opacity:.9}
.expand-minus{display:none}
.socialshare2{width:50px;height:50px;display:inline-block}
.socialshare2:active{height:51px;margin-bottom:-1px}
.socialshare2:hover{opacity:.9}
.mbafacebook{background:#507bbf}
.mbafacebook:active{box-shadow:0 1px 0 0 #4671b5}
.mbatwitter{background:#63cef2}
.mbagoogle-plus{background:#4d4f54 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4epoNKU3jOy6NTxWixxISktuJJErIqeSvJLQrtKZj_TQCzOyK1ohIUQfd_rWhdg6fnAmeY2RJAMZu9r0jzrugq9wdyx2tFwUFsO7NlOxV8I4eiOTFbQkyg1R2RFm2v3bvhI8g6vQOn0o/s20/g+.png) no-repeat center}
.mbagoogle-plus:active{box-shadow:0 1px 0 0 #43454c}
.mbalinkedin{background:#1aace3 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYqZWtehoZp04SabC_TBqwakjhjwHHs_cU7AIcPPaH1n7hwGPqNYhDQdjmPgqJ6AR3Buv8IQhNn187Q1YRxEomrlaW9SbLlvt03TgLoJ4SmFqyphAErUpPcMbq4WRbfYqJjLpTxdlblFE/s20/in.png) no-repeat center}
.mbalinkedin:active{box-shadow:0 1px 0 0 #12a4db}
.mbapinterest{background:#f16261 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTP1A2iblU2QX26ueTOLEMdbuMdmaacvVFOnCV191NHSafNh7bpLzUkwP0Q5sZVxPrtkI3Zk32JNyOngy9MP_WPg8dJPiaKjTbk0h3_iXU6Sawk4DLlu7kMpqBKmwtj_o_xSTTKUe1RQY/s20/pinterest.png) no-repeat center}
.mbapinterest:active{box-shadow:0 1px 0 0 #e85756}
.mbastumbleupon{background:#fdaf40 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgy7S6-iJ5MQYeEIn2_thEUaDUPgc_oS178POClPeSNAS3AczJlW-WtFx-3PxzqXbgqJQFI213mXNETe56XrqWgJWgCm1Sn2ZZrQiqln15PMRQN-xAapN5AVsXQeCFCNhZlcF_uVGAndGQ/s20/stumble.png) no-repeat center}
.mbastumbleupon:active{box-shadow:0 1px 0 0 #f5a635}


Now Copy past below code right after  <data:post.body/>
 <b:if cond='data:blog.pageType == &quot;item&quot;'>
<div class='social-div'>
<div id='sharrrrre'>
<div data-title='SHARES' id='shareme'/>
</div>
<div style='display: inline-block; margin-bottom: 20px;'>
<a class='mbafacebook' expr:href='&quot;http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;title=&quot;+ data:post.title' id='socialshare' onclick='window.open(this.href, &apos;windowName&apos;, &apos;width=550, height=600, left=24, top=24, scrollbars, resizable&apos;); return false;' rel='nofollow' target='_blank'>
<img src='https://googledrive.com/host/0B8D3MQmcZTyvN1kzV3lfS2h6NW8'/>
Share on Facebook
</a>
<a class='mbatwitter' expr:href='&quot;http://twitter.com/share?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' id='socialshare' onclick='window.open(this.href, &apos;windowName&apos;, &apos;width=550, height=600, left=24, top=24, scrollbars, resizable&apos;); return false;' rel='nofollow' target='_blank'>
<img src='https://googledrive.com/host/0B8D3MQmcZTyvVXp2Qm5OSzRMUmM'/>
Share on Twitter
</a>
</div>
<div id='expand-social' style='display:none;'>
<a class='socialshare2 mbagoogle-plus' data-title='Google+' expr:href='&quot;https://plus.google.com/u/0/share?url=&quot; + data:post.url' onclick='window.open(this.href, &apos;windowName&apos;, &apos;width=550, height=600, left=24, top=24, scrollbars, resizable&apos;); return false;' rel='nofollow' target='_blank'>
</a>
<a class='socialshare2 mbalinkedin' data-title='Linkedin' expr:href='&quot;http://www.linkedin.com/shareArticle?mini=true&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title + &quot;&amp;source=&quot; + data:blog.title' onclick='window.open(this.href, &apos;windowName&apos;, &apos;width=550, height=600, left=24, top=24, scrollbars, resizable&apos;); return false;' target='_blank'>
</a>
<a class='socialshare2 mbastumbleupon' data-title='Stumble-Upon' expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' onclick='window.open(this.href, &apos;windowName&apos;, &apos;width=550, height=600, left=24, top=24, scrollbars, resizable&apos;); return false;' rel='nofollow' target='_blank'>
</a>
<a class='socialshare2 mbapinterest' data-title='Pin it' expr:href='&quot;http://pinterest.com/pin/create/button/?url=&quot; + data:post.url + &quot;&amp;media=&quot; + data:post.thumbnailUrl + &quot;&amp;description=&quot; + data:post.snippet' onclick='window.open(this.href, &apos;windowName&apos;, &apos;width=550, height=600, left=24, top=24, scrollbars, resizable&apos;); return false;' rel='nofollow' target='_blank'>
</a>
</div>
<div class='share-toggle'>
<div id='social-expand' onClick='toggle(&apos;expand-social&apos;);'>
<div class='expand-plus expand'>+</div>
<div class='expand-minus expand'>-</div>
</div>
</div>
</div>
</b:if>

Now last step. Copy past below Javascript before </body>
 <script src='https://cdn.rawgit.com/msdesign92/ms-design/master/mashable-share.js'/>
<script type='text/javascript'>
$(function(){
$(&#39;#shareme&#39;).sharrre({
share: {
googlePlus: true,
facebook: true,
twitter: true,
stumbleupon: true,
linkedin: true,
pinterest: true
},
enableTracking: true,
enableHover: false,
});
});
</script>
<script type='text/javascript'>
function toggle(d)
{
$(&quot;#&quot; + d).animate({width:&#39;toggle&#39;},400);
}
$(document).ready(function(){
$(&quot;#social-expand&quot;).click(function(){
$(&quot;.expand-plus&quot;).toggle();
$(&quot;.expand-minus&quot;).toggle();
});
});
</script>

Now Save Template.

Hope you like it. If you found any problem then feel free to leave a comment and if you think our posts are helpful then do not forget share our posts. Thanks...