Thought this may be useful information for those who are loading social buttons for the first time. I got my basics from Google blogger, but there is plenty of literature on the Web of course. A quickie tutorial is the following. It is for placing the icons in the upper right hand corner of your Website page like so:
Step one: Log into cPanel or your preferred FTP Manager
Step two: I use my trusted pal cPanel File Manager, however you can use FTP or FileZilla as well to get into the directory where your Webpage is located. Once you are in there, you then upload the social icon images into that particular directory:
twitter.png
facebook.png
rss.png
google_plus.png
etc
Step 3: Click on the Webpage folder in your cPanel File Manager or preferred FTP. Click on edit and open the page to edit the html code.
Step 4: Navigate to <header> in the code and directly under <header> paste the following code (don't include spoiler tags
):
Step 5: Save the code
Step 6: Get back into your file directory where your Web page is. Look for your css stylesheet, select it and click on edit. Open the page.
Step 7: Navigate to under the "header" section of the stylesheet until after the header section's last "}" and paste the following CSS (again don't paste the spoiler tags)
Check the social icons and tweak the CSS if necessary.

Step one: Log into cPanel or your preferred FTP Manager
Step two: I use my trusted pal cPanel File Manager, however you can use FTP or FileZilla as well to get into the directory where your Webpage is located. Once you are in there, you then upload the social icon images into that particular directory:
twitter.png
facebook.png
rss.png
google_plus.png
etc
Step 3: Click on the Webpage folder in your cPanel File Manager or preferred FTP. Click on edit and open the page to edit the html code.
Step 4: Navigate to <header> in the code and directly under <header> paste the following code (don't include spoiler tags
<div class='social-media-icons' id='social-icons'>
<ul>
<li class='media_icon'><a href='http://facebook.com/username'><img border='0' src='http://yourwebsitename.com/facebook.png'/></a></li>
<li class='media_icon'><a href='https://twitter.com/username'><img border='0' src='http://websitename.com/twitter.png'/></a></li>
etc
</ul></div>
<ul>
<li class='media_icon'><a href='http://facebook.com/username'><img border='0' src='http://yourwebsitename.com/facebook.png'/></a></li>
<li class='media_icon'><a href='https://twitter.com/username'><img border='0' src='http://websitename.com/twitter.png'/></a></li>
etc
</ul></div>
Step 6: Get back into your file directory where your Web page is. Look for your css stylesheet, select it and click on edit. Open the page.
Step 7: Navigate to under the "header" section of the stylesheet until after the header section's last "}" and paste the following CSS (again don't paste the spoiler tags)
#social-icons {
margin-bottom:-30px;
height:50px;
width:100%;
clear:both;
z-index: 2;
position: relative;
}
.social-media-icons {
display:table
}
.social-media-icons ul {
text-align:right;
padding:5px 5px 0 0
list-style-image:none;
list-style-position
utside;
list-style-type:none;
}
.social-media-icons ul {
margin-bottom:0;
padding:0;
float:right;
}
.social-media-icons li.media_icon {
margin-left:6px;
padding-left:0 !important;
background:none !important;
display:inline;
float:left;
}
margin-bottom:-30px;
height:50px;
width:100%;
clear:both;
z-index: 2;
position: relative;
}
.social-media-icons {
display:table
}
.social-media-icons ul {
text-align:right;
padding:5px 5px 0 0
list-style-image:none;
list-style-position
list-style-type:none;
}
.social-media-icons ul {
margin-bottom:0;
padding:0;
float:right;
}
.social-media-icons li.media_icon {
margin-left:6px;
padding-left:0 !important;
background:none !important;
display:inline;
float:left;
}
Check the social icons and tweak the CSS if necessary.