Showing posts with label Blogging Tips. Show all posts
Showing posts with label Blogging Tips. Show all posts

Friday 17 May 2013

How To Add Go To Top And Go To Bottom Buttons Using JQuery In Blogger

The Up and Down buttons can be used to navigate to the top and bottom of the page content, especially when on the main page there are many articles or when an article has too many comments. These buttons have a fadeIn and fadeOut effect, this means that they will fade slightly when we are scrolling to the top or bottom of the page and additionally, have the function of going up/down the blog.

blogger widgets, blogger navigation

Demo

You can see a live demo on my blog, the buttons are located on the right side.

How to put Go Up and Go Down buttons using the jQuery slide effect

Step 1. Go to Template, click on the Edit HTML button


Step 2. Select the "Expand Widget Templates" box

Step 3. Search (using CTRL + F) for the following piece of code:

]]></b:skin>

Step 4. Just above this code, paste this one:

/* Up and Down Buttons with jQuery
----------------------------------------------- */
.button_up{
padding:7px; /* Distance between the border and the icon */
background-color:white;
border:1px solid #CCC; /* Border Color */
position:fixed;
background: whiteurl(http://4.bp.blogspot.com/-7zE5N9GdDUk/T6rH17KE6II/AAAAAAAACeQ/aEcKRyEhxsE/s16/arrow_up.png) no-repeat top left;
background-position:50% 50%;
width:20px; /* Button's width */
height:20px; /* Button's height */
bottom:280px; /* Distance from the bottom */
right:5px; /* Change right to left if you want the buttons on the left */
white-space:nowrap;
cursor: pointer;
border-radius: 3px 3px 3px 3px;
opacity:0.7;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
.button_down{
padding:7px; /* Distance between the border and the icon */
background-color:white;
border:1px solid #CCC; /* Border Color */
position:fixed;
background: white url(http://3.bp.blogspot.com/-sukwuViZaYY/T6rH15A8niI/AAAAAAAACeM/YErd0S8lPGA/s16/arrow_down.png) no-repeat top left;
background-position:50% 50%;
width:20px; /* Button's width */
height:20px; /* Button's height */
bottom:242px; /* Distance from the bottom */
right:5px; /* Change right to left if you want the buttons on the left */
white-space:nowrap;
cursor: pointer;
border-radius: 3px 3px 3px 3px;
opacity:0.7;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}

Note:  - in green are some annotations that explains what styles you can modify on their left side.
           - You can change the arrows by changing the URLs in blue.
           - To change the buttons background color of buttons, change the white text with your color 

Step 5. Now search (CTRL + F) for this tag:

</body>

Step 6. And just above it, paste the following code:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>

<div class='button_up' id='button_up' style='display:none;'/>
<div class='button_down' id='button_down' style='display:none;'/>

<script>
//<![CDATA[
(function(){var special=jQuery.event.special,uid1='D'+(+new Date()),uid2='D'+(+new Date()+1);special.scrollstart={setup:function(){var timer,handler=function(evt){var _self=this,_args=arguments;if(timer){clearTimeout(timer)}else{evt.type='scrollstart';jQuery.event.handle.apply(_self,_args)}timer=setTimeout(function(){timer=null},special.scrollstop.latency)};jQuery(this).bind('scroll',handler).data(uid1,handler)},teardown:function(){jQuery(this).unbind('scroll',jQuery(this).data(uid1))}};special.scrollstop={latency:300,setup:function(){var timer,handler=function(evt){var _self=this,_args=arguments;if(timer){clearTimeout(timer)}timer=setTimeout(function(){timer=null;evt.type='scrollstop';jQuery.event.handle.apply(_self,_args)},special.scrollstop.latency)};jQuery(this).bind('scroll',handler).data(uid2,handler)},teardown:function(){jQuery(this).unbind('scroll',jQuery(this).data(uid2))}}})();

$(function() {
var $elem = $('body');
$('#button_up').fadeIn('slow');
$('#button_down').fadeIn('slow');
$(window).bind('scrollstart', function(){
$('#button_up,#button_down').stop().animate({'opacity':'0.2'});
});
$(window).bind('scrollstop', function(){
$('#button_up,#button_down').stop().animate({'opacity':'1'});
});
$('#button_down').click(
function (e) {
$('html, body').animate({scrollTop: $elem.height()}, 800);
} );
$('#button_up').click(
function (e) {
$('html, body').animate({scrollTop: '0px'}, 800);
} );});
//]]>
</script>

Note: In case you want to remove the "Go to top" button, remove the 1st bolded code and to remove the "Go to bottom" button, remove the 2nd one.

Step 7. Finally, Save your Template. Enjoy!

Posted By Unknown09:09

Thursday 16 May 2013

A complete guide for Blogger SEO for newbies.

Filled under: ,

Blogger has recently enabled new SEO features for all bloggers. Only few people who already know how to enable are able to use it. These SEO features are 1. Post Permalink 2. Search Description 3. Custom Robots (Header) Tags. These three seo features play a vital role to improve your blog's organic search engine optimization (SEO). In this article we'll cover how to enable these features for your blogs.

Blogger's Advanced SEO Features

1. Permalink

To enable post permalink option you should first land to http://draft.blogger.com/home
and then follow steps show below in images.

Enable Permalink in Blogger

Enable Permalink in Blogger

Learn More about Automatic and Custom Permalink - Blogger SEO

2. Search Description

To enable search description for each post you should first enable search description for blog and have to describe your blog near about 140 word. After that you'll notice that seach description feature has been enabled for every post. You can take the reference of image given below.

Enable Search Descripiton in Blogger

Learn More about Post Search Description - Blogger SEO

3. Custom Robots (Header) Tags

To enable custom robots (header) tags for each post you should first custom robots (header) tags description for blog and have to describe your blog near about 140 word. After that you'll notice that custom robots (header) tags feature has been enabled for every post. You can take the reference of image given below.

Enable Custom Robot Tags in Blogger

Learn More about Custom Robots (Header) Tags

Posted By Unknown12:14

Submit Blogger Sitemap to Google Webmaster Tools

Filled under: ,

If you want to achieve benefits of Organic SEO to get better search engine ranking then one of the most important thing is submitting sitemap to all search engines. Good thing is that Google Blogger v2 has 'sitemap.xml' file on the server and you can submit this files to search engines. Most of us think that sitemap submission is a difficult process and they can not be able to submit sitemap of their blogs successfully so they always look for a webmaster who can do this task for them. In this article I will cover entire process to submit sitemap to Google webmaster tools in less than 5 minutes. This task is most important and most searched topic on Google and other search engines. I have created a video tutorial to guide you in a better manner but I am also texting hereunder all the necessary steps.

Steps to submit Blogger sitemap to Google Webmaster -

1/ First land to https://www.google.com/webmasters/tools/home?hl=en
2/ If you are not already Login to Google please do Login (if necessary)
3/ Now can find a list to blogs with thumbnails and blog urls

Submit Blogger Sitemap to Google screen 1

4/ Select one blog to submit sitemap
5/ Additional - if your blog is not in this list you can submit your blog by clicking red color ADD A SITE button appearing next to gear icon and then select this blog
6/ After selection of blog you can see Sitemaps ›› tab or heading; Now click on that

Submit Blogger Sitemap to Google screen 2

7/ After that you'll find ADD/TEST SITEMAP button in red color; Now Click on that

Submit Blogger Sitemap to Google screen 3

8/ After that you'll find blog url and a blank box; write 'sitemap.xml' without inverted commas.
9/ Now click on blue color Submit Sitemap button 
10/ After this action you'll get 'Refresh the page' message and click on this

Submit Blogger Sitemap to Google screen 4

Your all blog posts and pages have been submitted to Google search engine. Your blog posts and pages will be crawled within next 2 or 3 days. Then you'll be able to see number of pages indexed by Google search engine and other related stats.

Note:
'sitemap.xml' file is not available for those who are using custom domain for Blogger blogs. Actually this is a Blogger bug, I have reported this bug and it will be resolved soon. But in this case you can use Method 2 to submit sitemap. Method 2 will be published day after tomorrow. 

Posted By Unknown10:32

Easy Way To Make Animated Favicon Maker

Filled under:


Google 336*280 Banner Ad Goes to Here

A favicon (in short favorite icon) also known as shortcut icon, webpage icon, URL icon, Bookmark icon is a file containing a list of favorite icons indeed it looks like a square icon and 16×16, 32×32, 64×64 pixels in height and weight associated with a particular Websites or WebPages. This icon also bears the identity of theme or content of a site actually. It probably denotes a particular website. A web-designer can create an icon with tools.dynamicdrive.com/favicon or www.favicongenerator.org easily. Browsers that provide favicon support, automatically exhibits favicon on its address bar and next to the pages name in a list of Bookmarks. Specific sites support specific favicons. Whatever I’ve arranged a collaboration of an Animated Favicon Generator. Now read below very carefully and use the favicon generator tool.

How to Use Animated Favicon Generator

  • Locate your image. (in gif, jpg, jpeg, png format)
  • Enter Text (if any) used to generate a Scrolling Text Favicon/Animated Favicon.
  • Hit the Generate Favicon button.
  • Download the favicon.
  • Upload favicon.ico to the root of your website.
  • Add this after the tag of your index/header page:
  • You are done!

Use this tool to Generate Animated Favicon

Scrolling Text (optional):

Posted By Unknown05:28

Wednesday 15 May 2013

Stylish Blogger Navigation with Lower Section Widget

Filled under:


A three column footer widget is a common section on many commercial or nor commercial websites or blogs. This section keep readers attractive to many recipes on your blog near to its lower section. The other thing is that if you add a little navigation bar with lower section then it'd be an amazing thing exactly. It will keep reader always busy to read your quality tutorials again and again. This widget is an extracted widget from a particular site, i further customized it and gave a newer shape. You might see this lower+navigation widget set close to my lower section, so live demo is it actually. Just keep reading with Wild Blogger Tricks and get your job handled within a glimpse.

Prepare Your Template For This Widget

1. Go to Blogger and Log in with your account
2. Now go to template section and follow the  command
Edit HTML > Proceed > Expand Widget Template
3. Now Search for ]]></b:skin> and add the following code above it
/*------WBT Menubuttonpic-----*/
.menutoppic{background:url(http://1.bp.blogspot.com/-Oyqk6AVu4z4/Txau31fk7dI/AAAAAAAAElA/4LnYdGbMyZc/s1600/nav_hover.gif) repeat-x ;width:100%;height:42px;margin:0 auto;padding:0}
.menusearch{width:300px;float:right;margin:0 auto;padding:0}
.menutop{width:980px;height:25px;margin:0 auto;padding:8px 14px}
.menutop ul{padding-left:0;color:#69d0ed;text-transform:none;list-style-type:none;font:bold 12px Arial,sans-serif;margin:0}
.menutop li{display:inline;margin:0}
.menutop li a{background:url(http://3.bp.blogspot.com/-_OBGqDr3M-Q/TxaieOpqDgI/AAAAAAAAEko/wudq3yTdUt0/s1600/topbar-div.png) no-repeat center right;float:left;display:block;text-decoration:none;color:#69d0ed;line-height:2em;padding:0px 12px}
.menutop li a:visited{color:#69d0ed}
.menutop li a:hover{color:#fff;text-decoration:none}
/* -----   LOWER SECTION   ----- */
#lower {
margin:auto;
padding: 0px 0px 10px 0px;
width: 100%;
clear: both;
background: url(http://3.bp.blogspot.com/-JQSU6ixio28/T8d4eZs0T8I/AAAAAAAAGkU/RGi3PvUACps/s400/footer-bg.gif) repeat scroll left top transparent;
position:relative;
z-index:9999;
}
#lower-wrapper {
margin:auto;
padding: 10px 0px 20px 0px;
width: 960px;
}
#lowerbar-wrapper {
float: left;
margin: 0px 5px auto;
padding-bottom: 20px;
width: 32%;
text-align: justify;
font-family:Arial, verdana;
font-size: 13px;
color: #ECECEC;
line-height: 22px;
line-height: 1.6em;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
text-shadow:1px 1px 2px rgb(0,0,0);
}
.lowerbar {margin: 0; padding: 0;}
.lowerbar .widget {margin: 0; padding: 10px 15px 10px 15px;}
.lowerbar h2 {
margin: 10px 0 26px 0;
font: bold 15px georgia, verdana, arial;
text-transform: uppercase;
color:white;
border-bottom: 1px solid rgb(60, 60, 58);
padding-bottom: 6px;
text-shadow:1px 1px 2px rgb(0,0,0);
letter-spacing:1px;
}
.lowerbar ul {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
list-style-type: none;
}
.lowerbar li {
margin: 0px 0px 2px 0px;
padding: 0px 0px 1px 0px;
}
.lowerbar li a:link, .lowerbar a:visited{
color: #888;
text-decoration: none;
}
.lowerbar li a:hover{
color: #CCC;
text-decoration: underline;
}

Second Step Behind to Complete this Task Successfully

1. Don't save your template yet
2. Now find out </body> this code
3. Add the following code after <!-- end outer-wrapper --> or before <div id='credits'>
<div class='menutoppic'>
<div class='menutop'>
<ul>
<li><a href='/'>Home</a></li>
<li><a href='Link-1'>About Us</a></li>
<li><a href='Link-2'>Sitemap</a></li>
<li><a href='Link-3' target='_blank'>Services</a></li>
<li><a href='Link-4'>Contact Us</a></li>
</ul>
<div class='menusearch'>

<div style='float:right;padding:1px 8px 0 0;'>
<form action='/search' method='get'>
<input name='sitesearch' style='display:none;' value='http://mas-template.blogspot.com'/>
<input id='search-box' name='q' onblur='if(this.value==&apos;&apos;)this.value=this.defaultValue;' onfocus='if(this.value==this.defaultValue)this.value=&apos;&apos;;' style='width:170px;border:none;padding:4px 10px; font:italic 12px Georgia;color:#282828;  background:url(http://3.bp.blogspot.com/-7QHUeBZxu7I/Txa62cSpUII/AAAAAAAAElQ/wQQN2g10H4Y/s1600/fieldsearch.gif) no-repeat;' type='text' value='Search Tricks...'/><input align='top' id='search-btn' src='http://1.bp.blogspot.com/-zvCS10CP97c/Txa8p2DGMdI/AAAAAAAAElY/-bd-MbEMVXE/s1600/btn_search.gif' type='image' value='Search'/>
</form>
</div>
</div>
</div>
<div style='clear:both;'/>
</div>
<div id='lower'>
<div id='lower-wrapper'>
<div id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar1' preferred='yes'/>
</div>
<div id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar2' preferred='yes'/>
</div>
<div id='lowerbar-wrapper'>
<b:section class='lowerbar' id='lowerbar3' preferred='yes'/>
</div>
<div style='clear: both;'/>
</div> </div><!-- end lower-wrapper -->

Customization Guide of Navigation Bar

1.Change the following links with yellow marks and titles
2. Add <li><a href='#'>Title</a></li> this link for each time as more horizontal navigation bars and
the following links will help you to show dropdowns
<ul>
    <li><a href='#'>Sub link 1</a></li>
    <li><a href='#'>Sub link 2</a></li>
    <li><a href='#'>Sub link 3</a></li>
    <li><a href='#'>Sub link 4</a></li>
    <li><a href='#'>Sub link 5</a></li></ul>

Need Help?

Further need more help directly post your comment or contact us directly. Remember one thing your feedback is always appreciated to us. Thanks, happy blogging....

Posted By Unknown23:29

Stylish Blogspot Floating Social Sharing Widget

Filled under:


Social sharing widget is one of the most important widget which can lead your site traffic from slower to faster. Today we see most of the websites as well as Blogsites use this gadget. It may be placed on the sidebar, below post title, hanging on top or aside of your site or inside your post. Whatever it looks fade on several places of several sites. You might see this widget floating on the left aside of my site and gives off a stunning mood to the readers about sharing my posts on the social media. This widget is completely customizable and widgetized. I extracted this widget from addthis coding as well as from other JavaScript. Just follow the instructions below to install this widget on Blogger Blog.

Install Fascinating Social Media Floating Widget on Blogger

1. First of all go to Blogger and login with your accont
2. Now go to template section, download full template and follow the commands
Edit HTML> Proceed> Expand Widget Template
3. Now search for ]]></b:skin> and paste the following code above this section

/*-----WBT  COOL SOCIAL FLOATING-----*/
.wbt_floating{
    position:fixed; bottom:10%; margin-left:-60px; float:left;
    width:60px;
    background-color:#f7f7f7;
    padding: 5px 0 0px 0px;
    border-top:1px solid #ddd;
    border-left:1px solid #ddd;
    border-bottom:1px solid #ddd;
   z-index:9999px !important;
    border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
}
.wbt_floating .wbt_side_social_button{margin-bottom:5px;float:none;height:auto;width:60px;
}
.wbt_floating .st_twitter_vcount, .wbt_floating.st_plusone_vcount, .st_email{
    margin-left:5px;
}
.wbt_floating .st_fblike_vcount{ margin-left:5px;
}
.wbt_floating .stButton_gradient{
    background:none !important;
    height:21px !important;
    padding-left:0 !important;
}
.wbt_floating .chicklets, .wbt_floating .stMainServices {
    background:url('http://1.bp.blogspot.com/-r3RYZkB4Pis/T7alrxNFYyI/AAAAAAAAGc4/TCBwHNxEwR4/s400/gc_social_sprite.gif') no-repeat !important;
    height:19px !important;
    width:45px !important;
    padding:0 !important;
}
.st_email .chicklets{
    background-position:0 -77px !important;
    background-image:url('http://1.bp.blogspot.com/-r3RYZkB4Pis/T7alrxNFYyI/AAAAAAAAGc4/TCBwHNxEwR4/s400/gc_social_sprite.gif') !important;
}
.wbt_floating .st_twitter_vcount .st-twitter-counter{
    background-position:0 -58px !important; 
}
.wbt_floating  .stButton_gradient{
    border:none !important;
}
.wbt_floating .stBubble_count{
    width:44px !important;
    font-size: 15px !important;
    font-weight: normal !important;
    padding-top:7px !important;
    height:23px !important;
    background:none !important;
}
.wbt_floating .st_twitter_vcount .stBubble_count{
    color:#00a6df;
    background-color:#f8fbfc !important;
}
.st_fblike_vcount{margin-bottom: 0px;display: block;
}
.st_twitter_vcount{
    margin-bottom: 3px;
    display: block;
}
.st_email{margin-bottom: 5px; margin-top: 3px; display: block;
}
.wbt_floating .stBubble{background-position: 21px 31px !important; height:35px !important;
}
4. Now save your template and go to layout section
5. And click on Add a Gadget 
6. Tick HTML/JavaScript and add the following code and save it
<div class='wbt_floating'>
<script type='text/javascript'>var switchTo5x=true;</script>
<script src='http://w.sharethis.com/button/buttons.js' type='text/javascript'></script>
<script type='text/javascript'>stLight.optionsundefined{onhover:false});</script>
<div style='margin:0px 0 0px 10px;'><div id='fb-root'></div><script src='http://connect.facebook.net/en_US/all.js#xfbml=1'></script><fb:like font='' href='' layout='box_count' send='false' show_faces='false'></fb:like></div>
<span class='st_twitter_vcount' displaytext='' st_via='Wildbloggertrik'></span>
<div style='margin:5px 0 0px 0;'>
<center><a class='pin-it-button' count-layout='vertical' expr:href='http://pinterest.com/pin/create/button/?url=&quot; + data:post.url'>Pin It</a>
<a href='javascript:voidundefinedrun_pinmarkletundefined))' style='margin-left:-46px; width:43px; height:20px; display:inline-block;'></a>
<script src='http://assets.pinterest.com/js/pinit.js' type='text/javascript'></script>
<script type='text/javascript'>
function run_pinmarkletundefined) {
var e=document.createElementundefined'script');
e.setAttributeundefined'type','text/javascript');
e.setAttributeundefined'charset','UTF-8');
e.setAttributeundefined'src','http://assets.pinterest.com/js/pinmarklet.js?r=' + Math.randomundefined)*99999999);
document.body.appendChildundefinede);
}
</script>
</center>
</div>
<div style='margin:0px 0 0 5px;'>
<span class='st_plusone_vcount' displaytext=''></span>
</div>
<div class='addthis_toolbox addthis_default_style ' style='margin:5px 0px 5px 8px;'>
<a class='addthis_counter'></a>
</div>
<script src='http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4fb7d6f86229e7da' type='text/javascript'></script>
<script type='text/javascript'>
var addthis_config = {
ui_cobrand:"Wild Blogger Tricks",
ui_header_color: "#ffffff",
     ui_header_background:"#0080FF"}
</script>
<span class='st_email' displaytext=''></span>
<p style=' line-height:0px; font-size:10px; font-weight:bold; text-align:center;'><a href='http://www.wildbloggertricks.blogspot.com/' style='color:#CAC8C8;'>Widgets</a></p>
</div>

7. Make sure to place this widget below of your post see below

Customization Guide


1. Change Wildbloggertrik as of your twitter username
2. Change Wild Blogger Tricks as of your sitename

Posted By Unknown23:27

Stylish Blogger Horizontal Navigation Bar With Thumbnail Option.

Filled under:


Top menu is one of the most common sections at any website of blogsite on the web. I just have come across another stylish top menu widget of blogger but today I'd show you all how to configure another best stylish horizontal navigation bar workable with blogger as well as any type of HTML template. This template has some special features for example to show the most important keywords based tutorials of your site it's enough to show as faster as possible. It exhibits at the same time important links with targeted image. I found this widget on the web and further shortened the script to make your better understanding. Live demo is available on the post as well. Just read through WBT and get your task handled within moments.
Live Demo

Configure Your HTML Template

1. First of all go to Blogger and log in with your account
2. Now go to template section and download one of copy [Back Up Your Template]
& follow the commands
Edit HTML > Proceed > Expand Widget Template
3. Now seek for ]]></b:skin> and paste the following code above it

div.mashmenu {
 /* colors */
 background: none  repeat-x scroll top #F3F6F9; 
/* color of the nav */ 
border-bottom: 1px solid #DCE5EE; 
/* border bottom :  no hover color */ 
border-top: 2px solid #CF4125; 
color:black; 
z-index:9990;
margin-top:0px; } 
div.mashmenu div.fnav {
 /* colors */
border:2px solid #F3F6F9;
/* border top,left,right :  no hover color */
border-bottom:none;
}
div.mashmenu div.fnav:hover{
/* colors */
border:2px solid #0054a2;
/* border top,left,right : hover color */
border-bottom:none;
background:white;
}
div.mashmenu div.fnav a.flink {
/* colors */
color:#0054a2;
}
div.mashmenu div.fnav div.allContent {
/* colors */
background: none repeat scroll 0 0 #F3F6F9;
 /* color of the nav */
border:2px solid #0054a2;
/* border bottom,left,right : hover color  */
border-top:none;
color:black;
}
div.mashmenu div.fnav div.allContent a.slink {
/* colors */
color:#0054a2;
}
div.mashmenu div.fnav div.allContent a.slink:hover {
/* colors */
background-color: #5E88B4;
color:white;
}
div.mashmenu div.fnav div.snav:hover div.insideContent{
/* colors */
background: white;
border-left:1px solid white;
}
div.mashmenu div.fnav div.insideContent a {
/* colors */
color:#0054a2;
border-bottom:1px solid #5E88B4;
/* border bottom : hover color  */
}
div.mashmenu div.fnav div.insideContent a span:hover{
/* colors */
background-color: #5E88B4;
color:white;
}
div.mashmenu div.feat a.flink { /* colors */
color:#0054a2;
}
div.mashmenu div.feat a.flink:hover{
/* colors */
background-color: #5E88B4;
color:white;
border:none;
}
div.mashmenu a {
text-decoration:none; }
div.mashmenu img {
border:2px solid white; }
div.mashmenu div.fnav div.allContent{
display:none; }
div.mashmenu div.fnav div.allContent
div.insideContent{
display:none; }
div.mashmenu {
font-family: &amp;quot;Arial&amp;quot;, &amp;quot;Verdana&amp;quot;, sans-serif;
font-size:13px;
width: 1064px;
position: fixed;
padding: 3px 0 0;
margin-bottom:14px;
}
div.mashmenu div.fnav {
margin:0px 0px 0px 3px;
display:inline-block;
position:relative;
/* css3 */
-moz-border-radius:4px 4px 0px 0px;
-webkit-border-radius:4px 4px 0px 0px;
border-radius:4px 4px 0px 0px;
}
div.mashmenu div.fnav a.flink {
padding:8px;
display:block;
}
div.mashmenu div.fnav div.allContent {
position:absolute;
top:33px;
left:-2px;
max-width:550px;
max-height:250px;
overflow:hidden;
/* css3 */
-moz-border-radius:0px 0px 4px 4px;
-webkit-border-radius:0px 0px 4px 4px;
border-radius:0px 0px 4px 4px;
}
div.mashmenu div.fnav div.allContent:hover{
width:550px;
height:246px;
}
div.mashmenu div.fnav:hover div.allContent {
display:block;
}
div.mashmenu div.fnav div.allContent a.slink
{ margin:1px 0px 1px 1px;
padding:10px;
display:block;
width:140px
}
div.mashmenu div.fnav div.snav:hover div.insideContent{
display:block;
position:absolute;
top:0px;
left:165px;
width:410px;
height:100%;
padding-left:10px;
}
div.mashmenu div.fnav div.insideContent span.featured ,
div.mashmenu div.fnav div.insideContent a {
width:365px;
float:left;
overflow:hidden;
padding:5px 0px;
position:relative;
}
div.mashmenu div.fnav div.insideContent a img {
float:left;
width:100px;
height:60px;
padding-right:10px;
}
div.mashmenu div.fnav div.insideContent a span {
position:absolute;
top:20px;
left:120px;
padding:3px 3px ;
}
div.mashmenu div.feat {
float:right;
border:none;
margin-right:10px;
margin-top:5px;
}
div.mashmenu div.feat:hover{
border:none;
}
div.mashmenu div.feat a{
float:left;
font-size:12px;
border:none;
padding:5px 5px;
}
div.mashmenu div.feat a:hover{
/* css3 */
-moz-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;

4. Now save your template and go back to the Layout section
5. Pick up a new HTML/JavaScript and paste the following code below of Header section shown below

<div class="mashmenu">
    <div class="fnav">
    <ahref="#" class="flink" >TopLink?</a>
    <div class="allContent">
    <div class="snav" >
    <a href="#" class="slink" >Sub link?</a>
    <div class="insideContent">
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    </div><!-- end insideContent-->
    </div><!-- end snav -->
    </div><!-- end allContent -->
    </div><!-- end fnav1 -->

    <div class="fnav">
    <ahref="#" class="flink" >TopLink?</a>
    <div class="allContent">
    <div class="snav" >
    <a href="#" class="slink" >Sub link?</a>
    <div class="insideContent">
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    </div><!-- end insideContent -->
    </div><!-- end snav -->
    </div><!-- end allContent -->
    </div><!-- end fnav2 -->

    <div class="fnav">
    <ahref="#" class="flink" >TopLink?</a>
    <div class="allContent">
    <div class="snav" >
    <a href="#" class="slink" >Sub link?</a>
    <div class="insideContent">
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a></div>
<!-- end insideContent-->
    </div><!-- end snav -->
    </div><!-- end allContent -->
    </div><!-- end fnav3 -->

    <div class="fnav">
    <ahref="#" class="flink" >TopLink? </a>
    <div class="allContent">
    <div class="snav" >
    <a href="#" class="slink" >Sub link?</a>
    <div class="insideContent">
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    </div><!-- end insideContent-->
    </div><!-- end snav -->
    </div><!-- end allContent -->
    </div><!-- end fnav4 -->

    <div class="fnav">
   <ahref="#" class="flink" >TopLink?</a>
    <div class="allContent">
    <div class="snav" >
    <a href="#" class="slink" >Sub link?</a>
    <div class="insideContent">
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    </div><!-- end insideContent-->
    </div><!-- end snav -->
    </div><!-- end allContent -->
    </div><!-- end fnav5 -->

    <divclass="fnav">
    <ahref="#" class="flink" >TopLink?</a>
    <div class="allContent">
    <div class="snav" >
    <a href="#" class="slink" >Sub link?</a>
    <div class="insideContent">
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    <a href="#" >
    <img src="ImageUrl" alt="Targeted Script" />
    <span>Targeted Script</span>
    </a>
    </div><!-- end insideContent-->
    </div><!-- end snav -->
    </div><!-- end allContent -->
    </div><!-- end fnav6 -->

6. Now save it and all you're done

Customization Guidance

1. Simply change Top Link  as of your top link
2. Change Sub link  as of your sublink
3. To change your targeted script simply change Targeted Script
4. Change your targeted Image Url by changing Image Url
5. Change mash menu width by changing width: 1064px;

Note: There are lots of customizations are remaining in this widget those are not possible to expos elaborately to you all by this, if you know HTML editing then i think you could easily find those changes and modify accordingly

Need Help?

I think that this tutorial will help you a lot behind better understanding. After that if you feel any problem simply leave out your comment directly or contact us here. Your feedback is always appreciated

Posted By Unknown23:26

Nice Blogger Social Subscribing Widget-Easiest Version

Filled under:


Dear readers i was too busy these couple of days for not publishing any delicious recipe. But here come today with a beautiful social sharing widget with Rss, Twitter, G+  as well as FeedBurner Email Feeds facilities. This widget is overall major counseled by developers and quite easier to customize as you wish. There are huge websites containing free email subscription services delivered by feedburner or any third parties.This widget is an exacted gadget from another particular blog hosted by blogger. Let's go ahead and install this tiny delicious social sharing widget for blogger
Live Demo

Install Delicious Blogger Social Sharing Widget

1. Go to blogger and log in with your account
2. Go to layout section and click on Add a Gadget link
3. Pick HTML/JavaScript and paste the following code after customization

<style>

    #nice-socialbar {
        border: 0;
        margin-bottom: 10px;
        margin: 0 auto;
            width:300px;
    }
  
    #email-news-subscribe .email-box{
        padding: 5px 5px;
        font-family: "Arial","Helvetica",sans-serif;
       height:38px;}

    #email-news-subscribe .email-box input.email{
        background:#FFFFFF;
        border: 1px solid #dedede;
        color: #999;
        padding: 7px 10px 8px 10px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -o-border-radius: 3px;
        -ms-border-radius: 3px;
        -khtml-border-radius: 3px;
        border-radius: 3px;
        border-image: initial;
        font-family: "Arial","Helvetica",sans-serif;}  

    #email-news-subscribe .email-box input.email:focus{color:#333}  
  
 #email-news-subscribe .email-box input.subscribe{
        background: -moz-linear-gradient(center top,#666 0,#333 100%);
        background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#666),color-stop(1,#333));
      
        font-family: "Arial","Helvetica",sans-serif;
        border-radius:3px;
        -moz-border-radius:3px;
        -webkit-border-radius:3px;
        border:1px solid #333;
        color:white;
        
        padding:7px 14px;
        margin-left:3px;
        font-weight:bold;
        font-size:12px;
        cursor:pointer;
        border-image: initial;}


    #email-news-subscribe .email-box input.subscribe:hover{
      
        background-image:-moz-linear-gradient(top,#333,#666);
        background-image:-webkit-gradient(linear,left top,left bottom,from(#333),to(#666));
        filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=#ffffff,endColorStr=#ebebeb);
        outline:0;-moz-box-shadow:0 0 3px #999;
        -webkit-box-shadow:0 0 3px #999;
        box-shadow:0 0 3px #999
      

        -pie-background:linear-gradient(270deg,#ffda4d,#ff9b00);
        border-radius:3px;
        -moz-border-radius:3px;
        -webkit-border-radius:3px;
        border:1px solid #333;
        color:#FFFFFF;
     }  


    #other-social-bar {
        padding: 0px;
        overflow: hidden;
           height:37px;
         margin-top:-8px;
    }

    #other-social-bar ul {list-style: none outside none; padding-left: 4px;}


    #other-social-bar .other-follow {
        float: left;
        overflow: hidden;
        padding:5px;
        width: 270px;}

    #other-social-bar .other-follow ul {
        list-style: none outside none;
        padding-left: 4px;}

    #other-social-bar .other-follow li {
  
        display:inline;
        border:0;
      }


    #other-social-bar .other-follow li a {
        font-size: 12px;
        color:#666;
        font-weight: bold; font-family:arial;
        display:inline;
        }
    #other-social-bar .other-follow li.my-rss {
        background: url('http://3.bp.blogspot.com/-sR72SM_Wets/TwHZG9y4hXI/AAAAAAAAFv8/0bP2R3Qkl8c/s400/rss-16x16.png') no-repeat transparent;
        line-height: 1;
        padding: 0px 3px 1px 20px;
        width: 60px;
        margin-bottom:0px;
            margin-left:5px;}


    #other-social-bar .other-follow li.my-rss a, #other-social-bar .other-follow li.my-twitter a, #other-social-bar .other-follow li.my-gplus a{
    text-decoration:none;
    }
    #other-social-bar .other-follow li.my-rss a:hover, #other-social-bar .other-follow li.my-twitter a:hover, #other-social-bar .other-follow li.my-gplus a:hover{
    text-decoration:underline;
    }
    #other-social-bar .other-follow li.my-twitter {
        background: url('http://2.bp.blogspot.com/-KsALKRN7Zzo/T0vKkSG3AfI/AAAAAAAAF_k/l-VHD5xxzps/s400/twitter%2527.png') no-repeat transparent;
        line-height: 1;
        padding: 0px 3px 1px 20px;
        width: 60px;
        margin-bottom:0px;}
    #other-social-bar .other-follow li.my-gplus {
        background: url(http://4.bp.blogspot.com/-cC729VpBxrk/TwHZE71ZgoI/AAAAAAAAFvk/_UMyIgA8vj8/s400/gplus-16x16.png) no-repeat transparent;
        line-height: 1;
        width: 60px;
        padding: 0px 3px 1px 20px;
        margin-bottom:0px;}


.emailicon {
    background: url("http://3.bp.blogspot.com/_7wsQzULWIwo/Sty6EvZmTlI/AAAAAAAACGU/ArK94-9iDS0/s400/MBT-RSS-FEED.gif") no-repeat scroll 0px 2px transparent;
     padding: 0px 20px 0px 95px;
    min-height:100px;
    margin: 0px;
    width: 183px;
    line-height: 20px;
    vertical-align: middle;
    font-size: 14px;
    color: rgb(51, 51, 51);

}


.emailicon p {
color:#FF8604; 
font-size: 20px; 
font-weight: normal; 
font-family:  impact;  
padding:40 0px 10px 0px; 
margin:0;
padding-top: 20px;
line-height: 25px;
text-shadow: 0px 1px 0px #fff, 0px 2px 0px #C6C6C6;

}

    </style>

    <!--[if IE]>
    <style>
    #email-news-subscribe .email-box input.subscribe{
        background: #333;
        }
    </style>
    <![endif]-->



<div id="nice-socialbar" > 



<div class="emailicon"><p>Subscribe to our Free Email Updates! </p></div>

<div id="email-news-subscribe"> 
<div class="email-box"> <form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.openundefined'http://feedburner.google.com/fb/a/mailverify?uri=microwbt', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"> 
<input gtbfieldid="10" class="email" type="text" style="width: 160px; font-size: 12px;" id="email" name="email"value="Enter your email here..." onblur="if (this.value == &#39;&#39;) {this.value = &#39;Enter your email here...&#39;;}" onfocus="if (this.value == &#39;Enter your email here...&#39;) {this.value = &#39;&#39;;}" type="text" />
<input type="hidden" value="tntbystc" name="uri" /> <input type="hidden" name="loc" value="en_US" /> <input class="subscribe" name="commit" type="submit" value="Subscribe" /> </form> </div> </div> 
<div id="other-social-bar">
<ul class="other-follow">
 <li class="my-rss"> <a rel="nofollow" title="RSS" href="http://feeds.feedburner.com/microwbt" target="_blank">RSS Feed</a> </li> 
<li class="my-twitter"> <a rel="nofollow" title="twitter" rel="author" href="http://twitter.com/wildbloggertrik"  target="_blank">Twitter</a> </li> 
<li class="my-gplus"> <a rel="nofollow" title="Google Plus" rel="author" href=https://plus.google.com/106741792188008796695 target="_blank">Google Plus</a> </li> 
</ul> 
</div> 
</div>
</div>
<div class='clear'></div>
4. Now save it and all you're done 

Posted By Unknown23:21

Stylish Animated Blogger Label Cloud Tag Widget

Filled under:


Animation is one kind of extreme creativity in design, we naturally create animated .gif through photoshop. Have you ever known about blogger animated label cloud tag? there is a particular JavaScript which generates animated label cloud and automatically configures your blogger blog to float or animate the label keywords you destine. This widget is not so far customizable in general way but if you know JavaScript and you have a hosting then you could easily customize this widget and host it on your server and use it on your way. Today i'd show how to implement this widget on blogger as well as it's customizations.
Live Demo

Install Animated Label Cloud Widget on Blogger

1. First of all go to blogger and log-in your account
2. Now select your blog and go to layout section
3. Pick an HTML/JavaScript from blogger custom gadgets and paste the following code inside it

<div id="wbtFlashContent"><p style="display:none;">Flash Labels by <a href="http://www.WildBloggerTRicks.blogspot.com/">WildBloggerTricks</a></p></div>
<script type="text/javascript">
/*<![CDATA[*/
var wbtFlashLabelSettings = {
    blogurl        : "http://wildbloggertricks.blogspot.com",
    color          : "0090ff",
    hoverColor     : "FFF",
    backgroundColor: "FFFFFF",
    size           : 10,
    speed          : 150,
    width          : 300,
    height         : 300,
    transparency   : true
};
/*]]>*/
</script>
<script type="text/javascript" src="http://wbt.googlecode.com/svn/Ahmedz_Test-flash.js"></script>

4. Now save it and set on your sidebar as the better position

Customization Guidance

1. Change blog url by http://wildbloggertricks.blogspot.com
2. Change link color by 0090ff and hover color FFF
3. Change background color FFFFFF, height  300, width 300, speed 150, size 10

"These are the all changes across this stylish blogger auto flash label could plugin, You're requested to respect its copyright"

Posted By Unknown23:13
Related Posts Plugin for WordPress, Blogger...