Tuesday, September 16, 2014

Content Locker Widget cum Gadget For Blogger Websites



Most probably many of we bloggers prefer to get something in return when we have worked for something extremely hard. Atleast not for money but for atleast that more people can find our way hardwork.

For all those blogger here is a Content Locker Widget cum Gadget For Blogger Websites which helps you to lock the content until the user has not clicked on desired buttons.

With this the websites will get more customer reach than that of usual.

Follow the following steps to install this free widget instantly in your blog/website

Let's start.

1. Go to 'Template' and click 'Edit HTML'.


2. Make sure whether jQuery library is already included in your blog. If not, search for <head> and write down the following line just below <head>. 

<script src='http://code.jquery.com/jquery-1.10.2.min.js' type='text/javascript' />

3. Now search for </head> and paste the following code before </head>.


<link href='http://files-all-tech-corner.googlecode.com/svn/trunk/sociallocker.css' rel='stylesheet'/> <script src='http://files-all-tech-corner.googlecode.com/svn/trunk/sociallockermin.js' type='text/javascript'/>
<script type='text/javascript'>
 //<![CDATA[
jQuery(document).ready(function ($) { $('#default-usage .to-lock').sociallocker({ buttons: {order:["facebook-like","twitter-tweet","google-plus"]},
twitter: {url:"http://twitter.com/iammuji"},
facebook: {url:"https://www.facebook.com/bforblogger"},
google: {url:"https://plus.google.com/+Bforbloggerofficial"},
text: { header: "Like us To Unlock This Content",
message: "This content is locked. Like us on Twitter, Facebook or Google plus to unlock it." }, locker: {close: false, timer: 0,}, theme: "secrets" }); });
 //]]>
</script> 


Customization

Buttons There are seven buttons available for content locking. These are,

"facebook-like"
"facebook-share"
"google-plus"
"google-share"
"twitter-tweet"
"twitter-follow" and
"linkedin-share" 

You can apply any number of buttons for your site. You can even change the order of these buttons in the order:[] option (index 8 of the code). Separate each button by a comma (,).

Remember, for every button you inserted, you have to supply a URL link of your social media page. However for similar types of buttons like "facebook-like" and "facebook-share" or "google-plus" and "google-share", only one link has to be provided. For instance, my facebook page url is https://www.facebook.com/bforblogger which I will use for both "facebook-like" and "facebook-share" buttons.

Theme This specifies the visual aspect of your locker. There are five predefined locker themes available. You can select any of the following styles (Line 20 of the code).

secrets 


dandyish 


flat
 

glass


starter
However the style is "Starter" by default, i.e. you can even leave this field empty.

Additional Customization

Timer A countdown timer will be displayed if you choose any integer value. For instance, if you want to close your social locker after 300secs, you can insert timer: 300 in your code. A 0 value of timer indicates infinite time (Line 19 of the code).




Close Change your code from close: false to close: true in order to display a close icon at the corner of your locker (Line 19 of the code).




Now whenever you are interested to display social content locker in your blog post, wrap your code within this snippet of code.

<article id="default-usage">
 <div class="to-lock" style="display:none;">
 -- Hidden Content Starts --
 </div>
</article>

Credit

This awesome widget is created by Onepress-media for Wordpress blog.

I tried my best to keep things as uncomplicated as possible. If you still have any doubts hope you will use the comment box below.
Read More

Friday, August 29, 2014

Reddify Responsive Blogger Template

Reddify is specially designed for bloggers who blog on technology, lifestyle and living. Reddify is a fantastic, responsive theme designed to make your blogging experience as simple and seamless as possible. The layout also will encourage your viewers to read all of your content and get all attention it deserves by its awesome responsiveness.

Features:

1) Responsive: Reddify is specially designed for responsiveness. It can fit itself to any screen without any mis-functions. You can check it out.

2) Related: Related posts based on the current viewing post will boost your view count.

3) SEO: No matter how good the template is our template must be SEO qualified. We worked hard for achieving and it's 100% SEO qualified template.

4) Go to top button: No more scrolling back. We have got a Scroll to top button which scrolls back the page to top in single click.

5) Sharing buttons: Every post has their own sharing buttons which are likely to get used for sharing the posts in different Social websites.

Mail us at mail.alltechcorner@gmail.com to get this template direct in your inbox

To buy No Credits version mail us at mail.alltechcorner@gmail.com.
Read More

Friday, August 22, 2014

Loading Gadget for blogger

Have you ever thought to have a Loading gadget whenever a page of your website is loading and instead of showing a blank page showing a Loading gadget? If your answer is yes then you are in right place 

Today i'm going to give you the code for Loading gadget which appears when any of your website page is loading and after the page loads completely it will slowly fade away.

It gives visitors a cool interaction and hence a good look for website. 


Lets put this into work. Go to your template and find the <body> tag and just below the body tag paste this piece of code.

<div id='loader'>
<div class="wrap">
<div class="bg">
<div class="loading">
<span class="title">loading...</span>
<span class="text"><data:blog.title/></span>
  </div> </div></div></div></b:if>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type='text/javascript'>
        $(window).load(function () {
            setTimeout(function () {
                $(&quot;.wrap&quot;).fadeOut(&quot;slow&quot;);
                setTimeout(function () {
                    $(&quot;#loader&quot;).fadeOut(&quot;slow&quot;)
                }, 1000)
            }, 1000)
        });
    </script>
<style>#loader{position:fixed;top:0;left:0;right:0;bottom:0;background:black;color:#eaf7ff;z-index:1000;font-family:sans-serif,arial}@-webkit-keyframes title{0%{opacity:0;right:130px}48%{opacity:0;right:130px}52%{opacity:1;right:30px}70%{opacity:1;right:30px}100%{opacity:0;right:30px}}@-moz-keyframes title{0%{opacity:0;right:130px}48%{opacity:0;right:130px}52%{opacity:1;right:30px}70%{opacity:1;right:30px}100%{opacity:0;right:30px}}@-webkit-keyframes fade{0%{opacity:1}100%{opacity:0}}@-moz-keyframes fade{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes bg{0%{background-color:#306f99}50%{background-color:#19470f}90%{background-color:#734a10}}@-moz-keyframes bg{0%{background-color:#306f99}50%{background-color:#19470f}90%{background-color:#734a10}}@-webkit-keyframes blink{0%{opacity:0}5%{opacity:1}10%{opacity:0}15%{opacity:1}20%{opacity:0}25%{opacity:1}30%{opacity:0}35%{opacity:1}40%{opacity:0;right:-21px}45%{opacity:1;right:80px}50%{opacity:0;right:-21px}51%{right:-21px}55%{opacity:1}60%{opacity:0}65%{opacity:1}70%{opacity:0}75%{opacity:1}80%{opacity:0}85%{opacity:1}90%{opacity:0;right:-21px}95%{opacity:1;right:80px}96%{right:-21px}100%{opacity:0;right:-21px}}@-moz-keyframes blink{0%{opacity:0}5%{opacity:1}10%{opacity:0}15%{opacity:1}20%{opacity:0}25%{opacity:1}30%{opacity:0}35%{opacity:1}40%{opacity:0;right:-21px}45%{opacity:1;right:80px}50%{opacity:0;right:-21px}51%{right:-21px}55%{opacity:1}60%{opacity:0}65%{opacity:1}70%{opacity:0}75%{opacity:1}80%{opacity:0}85%{opacity:1}90%{opacity:0;right:-21px}95%{opacity:1;right:80px}96%{right:-21px}100%{opacity:0;right:-21px}}.wrap{font-size:18px;font-weight:700;left:25%;letter-spacing:5px;margin-left:-80px;margin-top:-40px;position:absolute;top:50%;width:68%}.bg{padding:30px 30px 30px 0;-moz-animation:bg 1.5s linear infinite;animation:bg 1.5s linear infinite;-moz-box-shadow:inset 0 0 45px 30px black;-webkit-box-shadow:inset 0 0 45px 30px black;box-shadow:inset 0 0 45px 30px black}.loading{position:relative;text-align:right;text-shadow:0 0 6px#bce4ff;height:20px;width:150px;margin:0 auto}.loading span{display:block;text-transform:uppercase;position:absolute;right:30px;height:20px;width:400px;line-height:20px}.loading span:after{content:"";display:block;position:absolute;top:-2px;right:-21px;height:20px;width:16px;background:#eaf7ff;-moz-box-shadow:0 0 15px#bce4ff;-webkit-box-shadow:0 0 15px#bce4ff;box-shadow:0 0 15px#bce4ff;-moz-animation:blink 3.4s infinite;-webkit-animation:blink 3.4s infinite;animation:blink 3.4s infinite}.loading span.title{-moz-animation:title 3.4s linear infinite;-webkit-animation:title 3.4s linear infinite;animation:title 3.4s linear infinite}.loading span.text{-moz-animation:title 3.4s linear 1.7s infinite;-webkit-animation:title 3.4s linear 1.7s infinite;animation:title 3.4s linear 1.7s infinite;opacity:0}</style>
Now save the template and reload your website.

If you still have any queries regarding the gadget installation use the comment box below :) 
Read More

Thursday, August 21, 2014

Solution for "If this markup is about a person, at least 2 of the following fields are needed" error in google authorship

If this markup is about a person, at least 2 of the following fields are needed" error in google authorship

In google authorship this is the recent time error where all the bloggers are struggling to come over. This error is because of the google is trying to show the authorship details but it cannot find the particular author's data.

"If this markup is about a person, at least 2 of the following fields are needed error in google authorship-5
So here is the solution for If this markup is about a person, at least 2 of the following fields are needed: organization, location, or role. 

Its actually saying that if this website has a markup of a person, either may be he is a author or a admin, you have to provide his/her organization or company, location or role or designation to the company or blog.

As the question requires data the solution is to provide the data which has asked for but through some code.

Follow the step below:

Step 1: Go blogger dashboard --> Template --> Edit Template.

Step 2: Find the line post-author vcard.

If this markup is about a person, at least 2 of the following fields are needed" error in google authorship-2
Step 3: Just the below the post-author vcard code there will be <span>...</span> tags.

If this markup is about a person, at least 2 of the following fields are needed" error in google authorship-3
Just after the end of the span tag i.e., just after the </span> tag paste the following code

<span class="org">Company/Organisation Name</span>
<span class="role">Your role</span>

If this markup is about a person, at least 2 of the following fields are needed" error in google authorship-4
Step 4: Search for the post-author vcard again and follow the same steps if you find any other.

Step 5: Now replace Company/Organisation Name and Your role with desired replacements..

Step 6: Save the template and verify the authorship by going to Structured Data Testing Tool site.

If you still can't get out of the error, please use the comment box below so that I can help you.
Read More

Wednesday, August 20, 2014

Add Numbered Page Navigation Widget For Blogger Blogspot

In blogger, by default, you see Older posts, and Newer Posts links near the bottom of the page which is useful to your blog visitors to navigate to other posts of your blog. But, the problem is so many people hardly notice those newer and older posts links, which absolutely means less page views to your blog.

So in order to increase to your blog page views you can use this cool looking, advanced numbered page navigation to your blog.

Standard page navigation on blog is “Newer Posts, Older Posts and Home ”. To create page navigation number like shown below your blog is very easy.

Step 1: Go to Your Blogger Dashboard --> Layout --> Add A Gadget --> Choose A Html/Javascript Gadget --> Copy Paste The Following Code

<style> .showpageNum a {
background: #02ab68;
padding: 5px;
padding-left: 10px;
border: 1px solid #b9b9b9;
padding-right: 10px;
margin-right: 5px;
color: #000;
font-weight: bold;
}
.showpage a {
background: #02ab68;
padding: 5px;
padding-left: 10px;
border: 1px solid #b9b9b9;
padding-right: 10px;
margin-right: 5px;
color: #000;
font-weight: bold;
}
.showpageArea {
float: left;
}
.feed-links {
display: none;
}
.showpageArea a {
float: left;
font-size: 15px;
color: #fff!important;
padding-left: 15px;
padding-right: 15px;
}
.showpagePoint {
float: left;
font-size: 15px;
padding-left: 15px;
padding-right: 15px;
}
.showpageArea a {
text-decoration: none;
}
.showpageArea {
float: left;
width: 363px;
margin-top: 10px;
}</style>
<!--Page Navigation Starts-->
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<script type='text/javascript'>
var pageCount=6;
var displayPageNum=6;
var upPageWord =&#39;Previous&#39;;
var downPageWord =&#39;Next&#39;;
</script>
<script src='http://widcraft.googlecode.com/svn/blogger_pagenavi_min.js' type='text/javascript'/>
</b:if>
</b:if>
<!--Page Navigation Ends -->

Also Read: How To Set Up A Custom Domain With Godaddy In Blogger - A Step By Step Procedure 

Step 2: Now save the code and visit back your website to see the widget in action. Still if you have any doubt feel free to use comment box right below.
Read More

Tuesday, August 19, 2014

Top 10 tips to improving your SEO

Search Engine Optimization plays a crucial role in site development. It plays a crucial process of affecting the visibility of website or a webpage in a search engine's natural or un-paid's search results.

Here we provide 10 best tips to improve your SEO. Make best use of it.

1. Keyword Research :

The keywords are very important in building the content. Make sure that the content is rich of keywords. The search engine can be optimized mainly by the keywords. SEO tools will also allow you to see the levels of competition for the mot popular keywords. This will allow you to optimize your campaign for the most effective keyword use.

2. Link Building :

A high Google rank is the top aim for all the bloggers. The more your page link is backed up in more sites the high rank that you get for your site. Make sure that the sites that you are backing up your link are more genuine and they are most visited sites.Make your content genuine and some of the tools also help in making your links popular and make that you have valid links.

3. Deep Linking :

Maintain relevant links for your content. Not only the homepage link and site link can help you in building the page link  but also the relevant links for your content also helps. The homepage links makes your site to show last in searches, but the relevant links helps to link your site in many searches and improve your page ranking.

4. Site Maps :

The site maps makes the ease of navigating for your websites. It allows web crawlers to find your site with easier to find and reduce number of clicks for finding it. Make sure that your site has this site maps for easy navigation for the users and also for the web crawlers to find you. There are some of the ways for building your site map, XML sitemaps is one of the process. It consist of a list of all pages and include the dates the pages were last modified. XML sitemaps are submitted to search engines to help them find and link to all of the content on your site.

5. Relevant Content :

Make your posts more relevant to the content of your site. The title for the post and the content must be same. Make your content with rich keywords, but also make sure that you maintain the relevant content of your posts and site. It helps in building your site map and also easy for the users to read the content.

6. Optimize Mega tags :

The Meta tags are in the code of the site. The two most important meta tags are the description and keywords. Meta tags summarize what the site is about and are still have a role in the search rankings.

The description tag is what users will read when your page comes up in search listings and can make the difference between them clicking on your site or not. The recommended length for the description meta tag is 150 – 200 characters. The description tag should have a few keywords within it but should not be stuffed with keywords, this should read like a sentence, not a list.

Many search engines hold little importance to the keyword meta tags due to “keyword overstuffing”. However all search engines still recommend adding them. When putting your list together, you need to think of the terms people are likely to be searching for (see Keyword Research), so they are led to your site with relevant content. It is not useful to add too many duplicates to your site (e.g. SEO agency, SEO agencies, London SEO agency, etc) as these are essentially the same, it is better to pick one or two variations of each keyword.

 7. Use Alt Tags for Images

The alt tags will help SEO as a brief, descriptive alt tag can add relevant text to your source code, which search engines can see when indexing your site. A higher search ranking can be obtained with more relevant content, making these tags valuable.

The use of alt tags also helps the visually impaired who asses the site using screen reader. Whilst they cannot see the image, the alt tag describes what the image was off, so they do not miss any content from the site.

8. Social media

Not technically SEO, Social Media is a fast growing factor in getting your website noticed, and is an important element to include in plans.
Social Media is a term used to describe a variety of Web-based platforms, applications and technologies that enable people to socially interact with one another online. Some examples of social media sites and applications include Facebook, YouTube, Del.icio.us, Twitter, Digg, blogs and other sites that have content based on user participation and user-generated content (UGC).

To achieve the most form social media it is important to have a give and take relationship. Helping members out with retreats, or digs or giving helpful advice will increase the effectiveness of this media.

Read How To Promote Your Blog

9. Ensure Domain Name Contains keywords

You do not need to pack lots of keywords into your domain name, but a few carefully chosen keywords to highlight the topic of the website are useful. Too many keywords in the domain name can make a site look like it is spam based. Avoiding the overuse of hyphens is also a key element in getting the domain name right.

10. Use Headings

The page title will be the first thing a search engine will look at when determining what the page is about. It is also the first thing visitors to your site will see when they get to your page. Therefore it is important that heading contain one or two keywords, they are relevant to the content on the page and provide appropriate targeting.

Headings have an important role in the organisation of information on a website, they are also able to provide aesthetically pleasing aspects to a site. It is recommended to use the appropriate page heading tags through out the site as these enable web crawlers to access the site easily.
Read More

Jquery Image Slider for Blogger


Images sliders are routine and lot of can be found now. But difficult to search working versions of image slider. Because several sliders missing jQuery organised files no longer works. Hope this particular tutorial work for you. However, Photo Slider always really helps to make website more attractive. However right now there have large amount of advantages of with it. We can use if with regard to introduce several offers and new services to each of our audience. We can establish awesome images as outlined by our products or services and share with slider.

Today i'm gonna share awesome about how to add Jquery Photo Slider. Its made out of jQuery and CSS. Each code are effectively arranged. I added five photos just for this slider. You can customize as ones like. Let see, how to incorporate this image slider with regard to blogger.

Login to  Blogger go to template >> Edit HTML.
Now Find </head> by Pressing ctrl+F and paste below code just above/before it.

<link href='https://bloggertrixcode.googlecode.com/files/animate.css' rel='stylesheet' type='text/css'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'/>
<script src='https://bloggertrixcode.googlecode.com/files/border-slider.js'/>
<script>/****/
            jQuery(document).ready(function(){
            jQuery(&#39;#bloggertrix_slider&#39;).animatedSlider({
                &#39;loader&#39;:true,
                &#39;width&#39;:900,
                &#39;height&#39;:300,
                &#39;slide_animation_data&#39; :
                    [//slides
                        //slide1 BEGIN
                        [
                            {
                            &#39;target_element&#39;:&#39;.txt1&#39;,
                            &#39;animation_frame&#39;:0,
                            &#39;animation_type&#39;:&#39;tada&#39;
                            },{
                            &#39;target_element&#39;:&#39;.txt2&#39;,
                            &#39;animation_frame&#39;:0.8,
                            &#39;animation_type&#39;:&#39;tada&#39;
                            }
                            ],//slide1 END
                         //slide2 BEGIN
                         [{
                            &#39;target_element&#39;:&#39;img&#39;,
                            &#39;animation_frame&#39;:0,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            },{
                            &#39;target_element&#39;:&#39;p&#39;,
                            &#39;animation_frame&#39;:0.7,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            }],//slide2 END
                           //slide3 BEGIN
                         [{
                            &#39;target_element&#39;:&#39;img&#39;,
                            &#39;animation_frame&#39;:0,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            },{
                            &#39;target_element&#39;:&#39;p&#39;,
                            &#39;animation_frame&#39;:0.6,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            }],//slide3 END
                          //slide4 BEGIN
                         [{
                            &#39;target_element&#39;:&#39;img&#39;,
                            &#39;animation_frame&#39;:0,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            },{
                            &#39;target_element&#39;:&#39;p&#39;,
                            &#39;animation_frame&#39;:0.5,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            }],//slide4 END
                        //slide5 BEGIN  
                         [{
                            &#39;target_element&#39;:&#39;img&#39;,
                            &#39;animation_frame&#39;:0,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            },{
                            &#39;target_element&#39;:&#39;p&#39;,
                            &#39;animation_frame&#39;:0.4,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            }],//slide5 END
                        //slide BEGIN  
                         [{
                            &#39;target_element&#39;:&#39;h1&#39;,
                            &#39;animation_frame&#39;:0,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            },{
                            &#39;target_element&#39;:&#39;p&#39;,
                            &#39;animation_frame&#39;:0.3,
                            &#39;animation_type&#39;:&#39;bounceInUp&#39;
                            }
                         ]//slide END
                    ]});});
        </script>
    <link href='http://fonts.googleapis.com/css?family=Kavoon' rel='stylesheet' type='text/css'/>
 Now Find ]]></b:skin> and paste below code just above/before it.

#bloggertrix_slider {margin:0 auto;}

#bloggertrix_slider .slider-contents {overflow:hidden;border:8px solid #DDDDDD;box-shadow:0 0 3px rgba(3,3,3,0.5);}

#bloggertrix_slider .slide-nav {float:left;padding: 0 8px;height: 26px;background: #3a3a3a;}

#bloggertrix_slider .slide-nav a {width: 14px;height: 14px;text-indent: -999px;float: left;list-style: none;display: block;background: #dddddd;margin: 5px 4px;cursor: pointer;}

#bloggertrix_slider .slide-nav a:hover {

 background: #27BAFF !important;}

#bloggertrix_slider .progress-bar {width:0px;background-color:#AAAAAA;height:2px;top: -2px;overflow:visible !important;display:block !important;position: relative;}

#bloggertrix_slider .controls {height: 26px;margin: 4px auto 0;display: table;}

#bloggertrix_sliderr .pause-play-control {width: 46px;height: 26px;float: left;background: #3A3A3A;color: #fff;}

#bloggertrix_slider .pause-play-control a {width:9px;height: 19px;display:block;overflow:hidden;text-indent: -9999px;background:url('http://img837.imageshack.us/img837/7647/fqnu.png');cursor: pointer;margin:3px auto 0;}

#bloggertrix_slider .pause-play-control a.play-slide {background-position:-5px -3px;}

#bloggertrix_slider .pause-play-control a.pause-slide {background-position:-29px -3px;}

#bloggertrix_slider .slider-next,#bloggertrix_slider .slider-prev {

width: 46px;height: 46px;background: #3a3a3a;display: block;font-size: 41px;color: #FFF;font-weight: bold;text-align: center;position: absolute;cursor: pointer;text-indent: -999px;overflow: hidden;}

#bloggertrix_slider .slider-next:before,#bloggertrix_slider .slider-prev:before {background: #3a3a3a url('http://img837.imageshack.us/img837/7647/fqnu.png');width:32px;height:32px;position:relative;top:7px;left:7px;content:'';display:block;}

/*#bloggertrix_slider .slider-next {margin: -220px 0 0 681px;}

#bloggertrix_slider .slider-prev {margin: -220px 0 0 4px;}*/

#bloggertrix_slider .slider-next:before {background-position:-5px -31px;}

#bloggertrix_slider .slider-prev:before {background-position:-5px -70px;}

.slide1 img {position:relative;}

.img-logo {margin-left: 150px;}

.img-mobile {margin-top: 45px;}

.img-tablet {margin: -168px 0 0 139px;}

.img-laptop {margin: -186px 0 0 349px;}

.slide1 {background-color: #67b608}

.slide2 {background-color: #03bbd3}

.slide3 {background-color: #cf6b30}

.slide4 {background-color: #f2a87b}

.slide5 {background-color: #388efd}
Now click on Save template and go Layout. >> Click on Add Gadget and Select HTML/JavaScript. >> Paste the Following Code

<div id="bloggertrix_slider">

            <div class="slide1">

             <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8mWFYZT4Qv0WSWbWugWYSn5UN1ojm-thSTc7HeH3_0c3VxxX5hQN4qdCpUfPvQE5EwMqDHnWl16DvCf-hhW75v1kVuFBDFCQ9JblU-Ayq7hb8S42lmlSU1DXoY2H8e00UW806bdRLn5g/s1600/bloggertrix1.jpg" />

            </div>

            <div class="slide2">

              <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHSZPqa609zOjRTgvlYVA1uOkrc3VyrykvvA6kgSX4LSB_ijaiuEDcHnDvIClosN2LR9aF_Y1B_DNn9-4uT63csl4xZdqjU1PB2EUhqkGojmfWIECPhBUWpyXSzwv_IXVsftO5BJtiuN4/s1600/bloggertrix2.jpg" />

            </div>

            <div class="slide3">

             <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisytjQXG5Yx82UWLCeAr1vwem1DWUw0sot6S9dbbW4-R7uVKWrkZZ0VJqXEPNPonYl8m7Ql91LDFor1sfqYyMWyRT8igoa35iogjlHMgBqEsQKVXbg7hLJrL0eEU43XUMVOT3NtB4x0cw/s1600/bloggertrix3.jpg" />

            </div>

            <div class="slide4">

             <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjABnM0SkD-MwQBsNDuxhdx5bL2qcqFk_HXiy0S32fyVorY4lPQTToUZ5CjwRR1_SS_GX9avyyQexVSNQuNbeWN5RB-9dx0sgNNGuCsiQeXDqFBKBd9gh4h88A-MnsT_8g9bfPNelcnxVg/s1600/bloggertrix4.jpg" />

            </div>

            <div class="slide5">

             <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX2UBpEE-wep4P-_B1PZlqVw8TZyOKqC2IqLI6HlyhN6NeN0hggoqwK3tLHWSzu94YPwVei3pbYQKvrMuYsBAZkPtrJ8EGUxQTFslhxShiPlcEBmYe8a8snfc7T0vd8crV07yO6YtrEBY/s1600/bloggertrix5.jpg" />  

            </div>

        </div>
Replace Blue Color URL with your image URL. Now save it..

You are done!
Read More

Monday, August 18, 2014

Edit your blogger template effectively

This is certain that whoever creates an blogger profile has to edit their template one or other time for the need of any change in template or for the cause of any widget edition.

But many of the members don't know how to edit their template effectively and regrets when something wrong happens.

Today I'll show you how to edit an blogger template effectively so that if any mistake takes place there should be nothing to worry about.

Step 1:

1. Go to your Blogger Account --› Select your Blog --› Click on Template.

2. Now click on   button on the top of the page.

3. Now click on  and save it to your computer.

Step 2:

1. Go to your Blogger Account.
2. Create a New Blog (This will be your temporary blog).
3. Now Click on Posts and create any 10 or 15 dummy posts in your temporary blog.
4. Now come back to Dashboard and Click on Template.

5. Now click on   button on the top of the page.

6. Now upload the Main blog template that you have downloaded previously in step 1.
7. After the successful upload click on Edit HTML.
8. Edit whatever you want and Save it.
9. Now Download the template that you have edited and upload it to your Main blog.
10. There goes you have edited your template without any risks.

Note: If you are good enough experienced in editing the blogger template then you can directly edit without creating a New blog. This article is for those who are tensed to edit their template on the main blog itself. You can Backup your template, edit it and save it and can restore it if you made any mistake.
Read More
© 2014 B for Blogger | Privacy Policy | Contact Us