1. Setting Main Blog Part
- On Blogger Dashboard Click Layout.
- Click Edit on Blog Posts Widget.
- Change it to look like that image.
- Click Save.
2. Mega Menu
- On Blogger Dashboard Click Template.
- Click Edit HTML.
- Press Crtl+F.
- And search 'Edit Mega-Menu'
- And find This Code:
| Change |
Please Change the links according to your need,For links Just replace the # with url and Change the Name of the link |
3. About Author
- On Blogger Dashboard Click Template.
- Click Edit HTML.
- Press Crtl+F.
- And search ' About Author Text'
- And find This Code:
Change The Text According to your requirement
4. Popular Post Carousel/What's Hot This Week
5.Top-Menu
- On Blogger Dashboard Click Template.
- Press ctrl + F.
- try to find "Top-Menu"(Without quotes) .
- You'll find the following code.
| # |
Change social links with your links. |
6. Grid Gallery
- On Blogger Dashboard Click layout.
- And Follow the instructions given the below:
7. Sidebar Socials
- On Blogger Dashboard Click layout.
- And Follow the instructions given the below:
<!Edit Your Social Icons here, You Just have to Change URLs with "#", In case You Want to Change Social icon, Just rename the li-->
<ul class="follow-soc"><li><a class="fa fa-dribbble" href="#"></a></li>
<li><a class="fa fa-facebook" href="#"></a></li>
<li><a class="fa fa-instagram" href="#"></a></li>
<li><a class="fa fa-pinterest" href="#"></a></li>
<li><a class="fa fa-twitter" href="#"></a></li>
</ul>
<!--Still Facing Problem??, Contact Us for help-->
| # |
Change social links with your links. |
8. How to make tabbed widget
This is the simplest tabbed widget ever made, You just have to enter a small piece of
code into your HTML/Javascript widget And place it right above the widgets which you want to get tabbed.
- On Blogger Dashboard Click layout.
- Add a HTML/Javascript widget in sidebar column:
- NOTE: DO NOT GIVE ANY TITLE TO THIS WIDGET.
- And Just Paste the code given below into your widget
<style type="text/css">
.tabber {
padding: 0px !important;
border: 0 solid #bbb !important;
}
.tabber h2 {
float: left;
margin: 0 1px 0 0;
font-size: 12px;
padding: 3px 5px;
border: 1px solid #bbb;
margin-bottom: -1px; /*--Pull tab down 1px--*/
overflow: hidden;
position: relative;
background: #222;
color:#fff;
cursor:pointer;
}
html .tabber h2.active {
background: #08c;
/* border-bottom: 1px solid #fff; */
color: #fff; /*--"Connect" active tab to its content--*/
}
.tabber .widget-content {
padding: 10px;
background: #fff;
clear:both;
margin:0;
}
.codewidget, #codeholder {
display:none;
}
</style>
<script type="text/javascript" src="http://greenlava-code.googlecode.com/svn/trunk/publicscripts/bloggertabs0.1_min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#codeholder').bloggerTabber ({
tabCount : 3
});
});
</script>
<!-- to make sure the widget works, do not alter the code below -->
<div id='codeholder'><p>Get this <a href="http://www.bloggersentral.com/2011/05/create-tabbed-content-blogger-widgets.html" target="_blank">tabber widget</a></p></div>
| # |
Change social links with your links. |
9. Recent Post
- On Blogger Dashboard Click layout.
- Add a HTML/Javascript widget in sidebar column:
- Now Paste the code given below into your widget
<script style="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/helplogger/recentpoststhumbs.js"></script>
<script style="text/javascript">
var posts_no = 5;
var showpoststhumbs = true;
var readmorelink = true;
var showcommentslink = true;
var posts_date = true;
var post_summary = true;
var summary_chars = 70;</script>
<script src="/feeds/posts/default?orderby=published&alt=json-in-script&callback=showlatestpostswiththumbs"></script>
<noscript>Your browser does not support JavaScript!</noscript>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>
<style type="text/css">
img.recent-post-thumb {padding:2px;width:100x;height:100px;float:left;margin: 0px 10px 10px; background: #fff; border: 1px solid #69B7E2;}
.recent-posts-container {font-family: 'Oswald', sans-serif; float: left;width: 100%;min-height: 70px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent-posts-container li {position:relative;padding:5px 0px;min-height:65px; list-style-type: none; margin-bottom: 5px;}
ul.recent-posts-container {counter-reset: countposts;list-style-type: none;}
ul.recent-posts-container li:before {content: counter(countposts,decimal);counter-increment: countposts;z-index: 2;position:absolute; left: 15px; font-size: 13px;font-weight: bold;color: #fff;background: #69B7E2;padding: 4px 10px; border-radius: 100%;}
.recent-posts-container a { text-decoration:none; }
.recent-post-title a {font-size: 13px; text-transform: uppercase; color: #5E7DAD;}
.recent-posts-details {margin: 5px 0px 0px 92px; }
.recent-posts-details a{ color: #777;}
</style>
| # |
Change social links with your links. |