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

Sunday, September 25, 2016

Steps On How I Added Related Posts or Article Widget To Blogger Blog

Too Many readers of a blog will spend more time on our blog after reading a post, if they see more related posts. If you really want to increase the page views of your blog, then you must be
showing related posts or articleso under each post on your blog. In this post, I am sharing with you, how I added a widget/plugin to my blog , which displays list of related posts below each article or post on my Blogger blog.


The same related posts or article widget will show a new related posts section below your post. The related posts widget fetches the related posts from those posts having the same label as the current post.

How To Add Related Article Or Post Widget To Your Bloggers Blog 

Only to PC can do this. No android website browser can so this unless you make use of the top seven apps I use in editing my blog template.

To add the related posts widget you will have to follow the steps
below:.

==> Log in to your blogger dashboard
==> From there go to Layout  > Edit HTML and tick the expand your widget templates box (option on the right). If you are using new Blogger dashboard , go to Template > Edit HTML


==> Click inside the HTML and use CTRL+ F to  enable search box. Then in the search box, find </head>

==> Right above </head> , paste the code below.


<!--Related Posts Scripts and Styles Start-->
<style>
#related-posts {
float : left;
width : 350px;
margin-top:20px;
margin-left : 5px;
margin-bottom:20px;
font : 11px Verdana;
margin-bottom:10px;
}
#related-posts .widget {
list-style-type : none;
margin : 5px 0 5px 0;
padding : 0;
}
#related-posts .widget h2, #related-posts h2 {
font-size : 20px;
font-weight : normal;
margin : 5px 7px 0;
padding : 0 0 5px;
}
#related-posts a {
text-decoration : none;
}
#related-posts a:hover {
text-decoration : none;
}
#related-posts ul {
border : medium none;
margin : 10px;
padding : 0;
}
#related-posts ul li {
display : block;
background : url(http://2.bp.blogspot.com/_u4gySN2ZgqE/
SnZhv_C6bTI/AAAAAAAAAl4/Rozt7UhvgOo/s200/
greentickbullet.png) no-repeat 0 0;
margin : 0;
padding-top : 0;
padding-right : 0;
padding-bottom : 1px;
padding-left : 21px;
margin-bottom : 5px;
line-height : 2em;
border-bottom:1px dotted #cccccc;
}
</style>
<script type='text/javascript'>
//<![CDATA[
var relatedTitles = new Array();
var relatedTitlesNum = 0;
var relatedUrls = new Array();
function related_results_labels(json) {
for (var i = 0; i < json.feed.entry.length; i++) {
var entry = json.feed.entry[i];
relatedTitles[relatedTitlesNum] = entry.title.$t;
for (var k = 0; k < entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
relatedUrls[relatedTitlesNum] = entry.link[k].href;
relatedTitlesNum++;
break;
}
}
}
}
function removeRelatedDuplicates() {
var tmp = new Array(0);
var tmp2 = new Array(0);
for(var i = 0; i < relatedUrls.length; i++) {
if(!contains(tmp, relatedUrls[i])) {
tmp.length += 1;
tmp[tmp.length - 1] = relatedUrls[i];
tmp2.length += 1;
tmp2[tmp2.length - 1] = relatedTitles[i];
}
}
relatedTitles = tmp2;
relatedUrls = tmp;
}
function contains(a, e) {
for(var j = 0; j < a.length; j++) if (a[j]==e) return true;
return false;
}
function printRelatedLabels() {
var r = Math.floor((relatedTitles.length - 1) * Math.random());
var i = 0;
document.write('<ul>');
while (i < relatedTitles.length && i < 20) {
document.write('<li><a href="' + relatedUrls[r] + '">' + relatedTitles
[r] + '</a></li>');
if (r < relatedTitles.length - 1) {
r++;
} else {
r = 0;
}
i++;
}
document.write('</ul>');
document.write('<a href="http://www.horlartechgist.com/2016/09/
steps-on-how-i-added-related-posts-or.html" target="_blank"
rel="nofollow"><font size="1" color="black">[Get Related Posts
Widget for Your Blog]</font></a>');
}
//]]>
</script>
<!--Related Posts Scripts and Styles End-->

Like below Snapshot


Then Click on Save template

Now use CTRL+F to find this line of code

<div class='post-footer-line post-footer-line-1'>

OR

<p class='post-footer-line post-footer-line-1'>

Now paste the code below immediately after any of these lines (whichever you could find):

Note : In each of above codes you might find two I will advise you to use the second of one. In order for your related post to display. E.g is you find below code, 

<div class='post-footer-line post-footer-line-1'>

paste the below given code under above code :

<!-- Related Posts with Thumbnails Code Start-->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='related-posts'>
<font face='Arial' size='3'><b>Related Posts: </b></font><font
color='#FFFFFF'><b:loop values='data:post.labels'
var='label'><data:label.name/><b:if cond='data:label.isLast !=
&quot;true&quot;'>,</b:if><b:if cond='data:blog.pageType ==
&quot;item&quot;'>
<script expr:src='&quot;/feeds/posts/default/-/&quot; +
data:label.name + &quot;?alt=json-in-
script&amp;callback=related_results_labels&amp;max-
results=5&quot;' type='text/javascript'/></b:if></b:loop> </font>
<script type='text/javascript'> removeRelatedDuplicates();
printRelatedLabels();
</script>
</div>
</b:if>
<!-- Related Posts with Thumbnails Code End-->

Click on Save Template. 


Now, go ahead to view one of your blog posts. You should see the Related posts below it.

Note : If you did not add a label (category) to a post, you might not see the related posts below it.

You can alter the CSS rules if you want to customize the look and feel Feel free to share your recommendations or or questions via the comment form. Sourced From Ogbongeblog.com

Thursday, September 22, 2016

How I Added Share Buttons That Displays Below All My Blog Post Automatically Via Template Editing

I already made an article on how I added share buttons to all blog post automatically which you can read HERE but different from this you are now reading in many blogging ways. They are different in the sense that in formal post, the share buttons will only show below after the blog post(out side)
But in this post i am giving the tutorial on how you can add it to inside blog post below like below snapshot


In the same Last Post I explained that Share buttons are blog features that help blog reader share pparticular posts to social media platforms or friends
who are absent while reading  or who does not know about the article.

But the problem is that only few bloggers knows how to add share buttons to their blog and that is one the reason I am sharing this article with you guys. Adding share buttons to blog is very easy and need a neat editing so as to curb error. All you need to add share buttons to your blog sucessfully are :

  1. Get the share buttons codes 
  2. Pasting The codes to your blog template. 
1. Getting The Share Buttons Codes : Getting the share buttons codes for you to paste in your blog template is the first thing to do. Therefore click HERE to follow metgyhow I got share buttons codes 

2. Pasting The codes to your blog template : Pasting the share buttons codes ia the next last thing to do after you have gotten the share buttons code. 

Where To Paste The Share Buttons Codes In Your Blog Template. 

To paste the blogger share buttons codes to your blog template, Log on to your blog "Dashboard"

Go to the share "Template" tab and click "EDIT HTML" like snapshot below. 


Wait for 30seconds for tge page to load then search for the value. In image below


<b: else/>

You might find many of them but the one to use is the last one. So now you are ready to paste the code. Where to paste the code is just above the given code in above image. Don't understand view snapshot below 


If you want to the share buttons codes to show like my current template that is at the center, what to do is apply this this code 

Above the else tag 
<div style="text-align: center;"> Put the Share button code here </div>
Also to add a word like please share to a friend jut like Mine, Use below code and paste it before the above code

<div style="text-align: center;"><b>Please Share To A Friend<b/><div>

And that's all about how I added share buttons to my blog post automatically which really helped my blog visitors to share my post 

Top 7 Android Apps I Used In Editing My Blog Template offline And Not Online With a Pc

On a daily basics, I noticed that Bloggers blogs template can't be edited online using an android device. If you try to edit the template online, the browser page  will automatically Seize and hang. This problem will always continue even though you are using a top notch browser like chromes or Uc Mini.


When I noticed this I felt annoyed because my Laptop drains is the only way to this solution and what of if am not with a or my PC?  Then it later occurred to me that if it can't be edited
online , then there is a better chance of success by editing the template Offline using android apps and then uploading it back online.

How I Do Edit My Blog Template offline With My Android Phone With These Top 7 Apps 

There are some powerful android apps that are capable of editing .XML file extension documents which I will listen below. I don't think people know these apps but most of us will have come across it on PlayStore and ignore it.

Now I will be listing the app I use to use in editing my blog template offline with my android phone. So sit back an read this article carefully becuase they ae some key word you won't afford to miss.

1. Es File Explorer  ==> This root explorer app has so many hidden features. Only that users are not aware of even me as a tech blogger. I only know these hidden features when I download the app.. It has the ability to edit files of various extensions and
sizes. Es File explorer can also be used to add recycle bin to android devices.

To edit your blog template with Es File Explorer, first of all save your blogger templates ( I.e download). Launch your Es File Explorer After downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below.


Download Es File Explorer from PlayStore and start editing your template offline with the app. Also enjoy New and other  features.

2. Quick Edit ==>  This app was specifically designed for editing ".TXT" (text) and ".XML"(template) files. It has auto save features , search to enable you to locate the particular value or code just like when you are editing you template online with PC and you search for a particular code using search box that will pop up if you click CTRL + F.

To edit your blog template with Quick Edit, first of all save your blogger templates ( I.e download). Launch your Quick Edit After downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below


Download Quick Edit  from PlayStore  and start editing your template offline with the app. Also enjoy New and other features.

3. Source Code Viewer ==>  This is an XML file editing app It has a simple / cute view with nice functions. all I know now about the app is that you can make use of it editing your template offline.

To edit your blog template with Source Code Viewer, first of all save your blogger templates ( I.e download). Launch your Source Code Viewer app After downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below


Download Source Code Viewer from PlayStore or source forge and start editing your template offline with the app. Also enjoy New and other features.

4. Axcel ==>  This is an XML file editing app. It has a simple view with great features. Don't be surprised that this app is one of the most recent XML editors on PlayStore for now

To edit your blog template with Axcel, first of all save your blogger templates ( I.e download). Launch your Axcel editing app after downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below


Download Axcel from Playstore from your android app. And start editing your template offline with the app. Also enjoy New and other features.

5. Droid-Edit  ==> This app is a general file editing app. I have already made an article on this app before Where I said, It supports many file extensions. It also have very smooth UI and navigation system. You Can also search for values or HtML text. Droid-Edit is the app I use always to edit my blog template. It is even present in my android as i post this article. Why I like droid edit is that, it is too creative and undestandable. It notification when errors while editing template just like other view XML EDITING APPS. Less I forget, "Driod Edit" Can also edit text File.

To edit your blog template with Droid Edit , first of all save your blogger templates ( I.e download). Launch your Droid Edit app After downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below


Download Driod-Edit from Us or PlayStore and start editing your template offline with the app. Also enjoy New and other features.

READ ALSO 
Best Alternative To Droid Edited And Wps Office : How To Use Uc Browser To Open Text Files - Mad Features Of Uc Browser Itself

6. AnWriter free ==> Thus, Anwriter free is a good app that i know that it supports XML and some other extensions. It edits template and other TXT files.

To edit your blog template with AnWriter free, first of all save your blogger templates ( I.e download). Launch your AnWriter free app After downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below


Download AnWriter Free from PlayStore and start editing your template offline with the app. Also enjoy New and other features.

7. Uc Browser ==> This a a great browser that has the hidden function of editing text files which I mentioned HERE. And also edits XML file. Nice i was quite surprised when I discovered it.

Uc browser is the most powerful browser after "Google Chrome" that hahas a lolot of gmhiddeen features which I myself only know few.

Also click HERE to learn how to get latest updates from uc mini or uc browser

To edit your blog template with Uc Mini, there are two ways. First one is the one I have being saying since which is of save your blogger templates ( I.e download). Launch your Uc mini app After downloading from below link. Then locate the template you downloaded at "Storage" >> "SD card" >> "Download". Click the template ans start editing as you like snapshot below.

Then if above first method don't work? Use this sure second method which goes thus : rename the file format of your the downloaded template from ".xml" to text file ".txt".

Now launch the uc browser and follow the procedures and step given in This Article to edit text files.


Download Uc Mini From us and start editing your template offline with the app. Also enjoy New and other features.

After doing all these steps for all above apps, save your template and replace it back to your blog by uploading. You may also wonder why I didn't talk of "WPS OFFICE". This app is good and it was the one I use to create my lyrics file for any music and I displayed the music on Ttpod app for Android.

Wednesday, September 21, 2016

Method I Use To Remove My "Powered By Blogger" Attribution Gadget From Blogger's Blog Template

This article is actually Sourced from MOKOSHALB GLOBAL PIMP. Meaning you can get the real post HERE Nowadays, Default Blogger Templates are embedded with  "Powered By Blogger" gadget. This is not a bad option. After all, we should feel proud to be on blogger platform and not other platform like WordPress, Hubpages etc. But somehow and in some cases,  we don’t like to show copyright attribute to blogger. Only Few bloggers prefer to brand their blog name. So they prefer to remove this default embedded copyright attribution from their blog. But the major problem new blogger facings this problem faces are is while removing it. Because normally on every gadget available on blogger's layout have save, cancel and remove option but on this gadget there is no remove option which appears to be a serious issue for many newbies. It does not require any head crack to accomplish this task.

Therefore, today we will discuss about how to remove "powered by blogger" attribution easily from blogger template. If you also want to know how to remove then follow below given step wise or method below.

Requirements 

  • You need a PC for you to be able to wait your blogger templates. This cannot be done on your android device even if you use chromes the baddest browser or uc mini. 
  • You neee yo be patient while editing your blog template SÃ’ as not to get a error after editing and saving the template. 

Method I Use To Remove Powered By Blogger From Blogger Layout..?


  • Firstly open your blog from which you want to remove powered by blogger option.
  • Then go to "Template section" >> Then Click on "Edit HTML" option.
  • Now all template codes will start appearing from all those code we have to find that particular gadget code. So get ready to start editing. 
  • To find powered by blogger gadget click on "jump to widget option" available just after "save button".
  • From drop down list select Attribution1 widget like snapshot below then click it 


  • Then After clicking, it automatically move toward code for that widget. 


  • Now from that particular session you were automatically moved to, search and change the value of locked='true' with locked='false'. And this will make your attribution widget removable.
  • Now save your template.
  • After doing above steps, Open your Layout panel


  • Now Click on Edit button of the attribution widget. Option to remove widget will start appearing simple click on it and all done.


Conclusion 

In conclusion, We hope this tutorial about removing powered by blogger attribution from blogger will be useful for you. You can mention your queries in the comment box.

Also I am giving out this opportunity to tell me any problem you are facing with your blog and I will make update to make solution to the problems 

All yu need is just describe your blogging problem in any of our latest updates comments box bringing us bak to this post or click here to view most of our blogging tips 

Monday, September 19, 2016

How To Advertise Your Products Or Website On NAIRAPP Using Their advertising COUPON

Advertising your product should be the first thing that comes your mind when ever you set up a new project such as websites , physical products, digital products etc and to make this advertising easy that's why there are numerous advertising platforms to advertise your websites and products online either for free or premium.

Advertising your products online will enable you reach a targeted audience and also create a better brand for your products or websites. Apart from this you will also have increase in sale especially when your website include affiliate or monetised by other methods.


I would have go on listing the numerous ad networks were to advertise your school, church programs seminars and any type of project or set up you can ever think of but I don't need to go to that lent since we already have one that can serve you better (Nairapp).

Nairapp is a fast growing Nigerian advertising
platform which allows you to advertise any type of products, business or website with just a token.

WHY YOU HAVE TO PLACE YOUR ADVERT ON NAIRAPP TODAY! 

Because this advertising network is a new platform they have few advertisers but huge numbers of publishers and as such your project or advert deal will be completed in no time.

Your advert will be displayed in all the publishers website and since the publishers are many in just few days or weeks your ads deal will be done because your ads have the tendency of
getting more clicks

Let say you placed your ads on other popular ads networks your ads deal will take time before it can be completed because most of the refresh that will be made on the publishers website may not display your ads because they have many advertisers but if you advertise with Nairapp now that they have few advertisers but plenty publishers your ads will get plenty clicks in a short time because your ads must surely display in
every two-three refresh made on the publishers websites.

Apart from getting more clicks on your ads it is also nice advertising with trusted and reliable ads network since scammers are all over the internet. I have been using Nairapp for quite
some years now and ever since there support has always been the best.

Nairapp don't joke with their customers and this is why they have set up a very responsive support section via facebook
pages and twitter plus other contacting methods available on their website

Nairapp is a Nigerian advertising network so it is obvious you can easily meet them live for any support following their office address on their website.

In addition Nairapp also give you a day free advertising for every ads method you choose hmm isn't that awesome getting a whole day(24hrs) for free that means you will be getting over 2000
and above clicks for free and that won't be charged at any cost.

Read Also📖
✔ Top 5 Nigeria Advertising Networks That Pays Bloggers / Webmasters

Have you designed a business, website, or did you have any program fit for advert such as religious programs, Seminars, school adverts, and any other program and you are thinking about how to get it live online in Nigerian or outside Nigeria to make your ads reach a huge audience in no time ? if yes then
NAIRAPP ©can solve that for you. if you a Nigerian looking for a better ads platform be happy you have found it...but the question is

HOW CAN I ADVERTISE ON NAIRAPP?

Advertising on Nairapp is very easy on like other ads network were you have to do lots of filling of some forms or the other.

Register as an advertiser. Then click on Join Us as shown below.


You will be redirected to join nairapp as pubisher. So at the top horizontal tab click Create Advertiser Account 




After that fill in the form that you see
correctly


And then  Tick I have read how to advertise and click Submit then check your mail to activate your account.


After that start advertising your your products or website or blog on nairapp and get more traffic and pageviews.

MORE ABOUT THIS ARTICLE 

if you don't have money to run long term campaign you can decide to run daily adverts on Nairapp . you will have to pay 500 naira for one day and your ads will run live online on all the publishers websites for 24hrs

if you want to advertise per click then you will pay 10_naira for one click andy also choose how long you want to run your ads but if you are not on cash and you want to manage or squeeze out some cash for this adverts I will advise you run daily adverts.

If you run daily advert it will be more beneficial to when you run per click adverts. let say you run daily adverts there is no time you will not get more than 100 clicks in a day comparing the numbers of publishers Nairapp is having now you can get even 1000 clicks if you are fortunate and you will still pay the same daily advert fee-#500 but if you pay for per click advert you will be charged 500_ naira for 50 clicks depending on your ads type.

What are you still waiting for? delay is very dangerous dear reader , it will be wise you start taking advantage Nairapp ads network because very soon they will no longer give all this awoof when they finally start growing out of hand and have accumulated many advertisers they will start changing terms and polices of their ads but before then.

Why not make a move and take this opportunity to change your business and sales , change your website traffic and stop dying in poor website traffic when you have a better way to grow
your bog. like i have mentioned above note this is not going to be too long they are only looking for advertisers thats why you have this coupon code to roll with so be fast to place your ads on nairapp I will be looking forward to see your ads display live on Nairapp.

Thanks for reading!!!
All credits To Imo Chizzy CEO of Vibertechs.com.

Monday, August 8, 2016

How To Add Share Buttons To Blogger's Blog

Share buttons has been the best way in which blog reader used in share particular article(s) to friends who are absent while reading r who does not know about the article.

But the problem is that only few bloggers knows how to add share buttons to their blog and that is one of the reason I am sharing this article with you guys.

Adding share buttons to blog is very easy and need a neat editing so as to curb error. All you nerd to add share buttons to your blog sucessfully is that you need to:

  • Calm down, 
  • Be careful, 
  • Don't be anxious 
  • Always take note the tab you have created.
With all this above, you are good to go. Follow below steps to add share buttons to blogger blog
How To Add Share Button To Blogger Blog Post.

Requirements 
Below are you requirements before you can set up share buttons for your blog. 

1. A personal computer fully charged. 
2. internet connection.
With all these you are carried. 

1. How To Get Share Buttons: Firstly you have to get the share button so as for you to paste in your blogger template. To get the share buttons it self on every blog post. 


  • Here,  another page loads then select a Style.that is, choose the Style of share buttons you want, which is located that the left side beside the bar buttons that is located at the right. 
  • As for me, I chose the last one which is the vertical long share buttons. After you have chosen your share button style click Next under the style you chose.

  • Then another page opens. Here, you are going to customize the style. That is fixing the social media buttons. The ones you will find there are (share this, facebook, twitter, LinkedIn, Pinterest and email).

  • So to add more media(s), search the social media name in the search box  (e.g Whatsapp) under sharing buttons like snapshot below.


  • You can also rearrange the way you want your share button. Also you can delete media clicking the x button beside them. 

  • Then drag the searched media to selected services like snapshot below. 
  • Then click Get The Code!

  • Sign in with your Gmail/google account details to get the code like below image and if you don't have an account, Create One. Don't panic! You it does not need confirmation message just fill I will your details and Tick "I agree to electronically to the terms use, privacy policy............."

  • Now your share buttons code will display like snapshot below. 
  •  Note: the share buttons  code you will be given are two. The first one is Span tag  and the second is script tag 


That all for Getting Your Share Buttons

2. How and where to paste your share buttons code: How and where to paste the share two codes as shown above is the major problem and which will be discussed below.
  • Log on your blogger Dashboard go to Template >> Edit Template.

I thought i talked about calmness carefulness and others? this is where you will utilize or this is where the utilization takes place. 

  • In your edit template, search for below code using CTRL+F then a small text box where to search will appear at the right of the edit template.  Search for code : class='post-footer>
  • Unfortunately you might find two of those codes. Do not panic, just, use the last one and paste span tags code below it


After this, you save your template and preview it using your Android devices or any phone also as long as your share buttons displays on your blog site. 



Please share this tutorial on blogging tips  to those who needs it  also. And drop you comment 

Also Feel free to ask your question/ request  and as soon as we see it, you we shall reply you. 

Wednesday, August 3, 2016

How To Add Share Button To Blogger Blog Post

Share buttons has been the best way in which blog reader used in share particular article(s) to friends who are absent while reading r who does not know about the article.

But the problem is that only few bloggers knows how to add share buttons to their blog and that is one of the reason I am sharing this article with you guys.

Adding share buttons to blog is very easy and need a neat editing so as to curb error. All you nerd to add share buttons to your blog sucessfully is that you need to:

  • Calm down, 
  • Be careful, 
  • Don't be anxious 
  • Always take note the tab you have created.
With all this above, you are good to go. Follow below steps to add share buttons to blogger blog
How To Add Share Button To Blogger Blog Post.

Requirements 
Below are you requirements before you can set up share buttons for your blog. 

1. A personal computer fully charged. 
2. internet connection.
With all these you are carried. 

1. How To Get Share Buttons: Firstly you have to get the share button so as for you to paste in your blogger template. To get the share buttons it self on every blog post. 


  • Here,  another page loads then select a Style.that is, choose the Style of share buttons you want, which is located that the left side beside the bar buttons that is located at the right. 
  • As for me, I chose the last one which is the vertical long share buttons. After you have chosen your share button style click Next under the style you chose.

  • Then another page opens. Here, you are going to customize the style. That is fixing the social media buttons. The ones you will find there are (share this, facebook, twitter, LinkedIn, Pinterest and email).

  • So to add more media(s), search the social media name in the search box  (e.g Whatsapp) under sharing buttons like snapshot below.


  • You can also rearrange the way you want your share button. Also you can delete media clicking the x button beside them. 

  • Then drag the searched media to selected services like snapshot below. 
  • Then click Get The Code!

  • Sign in with your Gmail/google account details to get the code like below image and if you don't have an account, Create One. Don't panic! You it does not need confirmation message just fill I will your details and Tick "I agree to electronically to the terms use, privacy policy............."

  • Now your share buttons code will display like snapshot below. 
  •  Note: the share buttons  code you will be given are two. The first one is Span tag  and the second is script tag 


That all for Getting Your Share Buttons

2. How and where to paste your share buttons code: How and where to paste the share two codes as shown above is the major problem and which will be discussed below.
  • Log on your blogger Dashboard go to Template >> Edit Template.

I thought i talked about calmness carefulness and others? this is where you will utilize or this is where the utilization takes place. 

  • In your edit template, search for below code using CTRL+F then a small text box where to search will appear at the right of the edit template.  Search for code : class='post-footer>
  • Unfortunately you might find two of those codes. Do not panic, just, use the last one and paste span tags code below it



After this, you save your template and preview it using your Android devices or any phone also as long as your share buttons displays on your blog site. 



Please share this tutorial on blogging tips  to those who needs it  also. And drop you comment 

Also Feel free to ask your question/ request  and as soon as we see it, you we shall reply you.