Wednesday, 4 March 2015

Social icons code / Add social icons for your website pages / social network pages icons

Notes : upload & change spacer image path and social networking icons file path
css code paste internal css or external file & HTML code paste where you want display icons, as requirement change background positions

CSS 

.fb {
    background-image: url("http://filepath/social-icons2.png");
    background-position: 95px -211px;
    margin-right: 3px;
    width: 36px;
}
.gplus{
    background-image: url("http://filepath/social-icons2.png");
    background-position: 218px -211px;
    margin-right: 3px;
    width: 36px;
}
.youtube {
    background-image: url("http://filepath/social-icons2.png");
    background-position: 259px -211px;
    margin-right: 3px;
    width: 36px;
}

.linkdin {
      background-image: url("http://filepath/social-icons2.png");
    background-position: 53px -211px;
    margin-right: 3px;
    width: 36px;
}
.twitter {
       background-image: url("http://filepath/social-icons2.png");
    background-position: -211px -211px;
    margin-right: 3px;
    width: 36px;
}

.pinster{
       background-image: url("http://filepath/social-icons2.png");
    background-position: 135px -211px;
    margin-right: 3px;
    width: 36px;
}

HTML

<a href="https://www.facebook.com/oceansltd" target="_blank"><img class="fb" alt="" src="http://oceans-ltd.com/wp-content/uploads/2015/03/spacer.gif"></a>

<a href="https://plus.google.com/u/0/115275724818781182324/posts?hl=en" target="_blank"><img class="gplus" alt="" src="http://oceans-ltd.com/wp-content/uploads/2015/03/spacer.gif"></a>

<a href="https://twitter.com/oceansltdsa" target="_blank"><img class="twitter" alt="" src="http://oceans-ltd.com/wp-content/uploads/2015/03/spacer.gif"></a>

<a href="https://www.linkedin.com/in/oceansltd" target="_blank"><img class="linkdin" alt="" src="http://oceans-ltd.com/wp-content/uploads/2015/03/spacer.gif"></a>

<a href="https://www.pinterest.com/oceansltdsa/" target="_blank"><img class="pinster" alt="" src="http://oceans-ltd.com/wp-content/uploads/2015/03/spacer.gif"></a>

<a href="https://www.youtube.com/channel/UCEW_WuQwcu4qVdsU5cO6-Ig" target="_blank"><img class="youtube" alt="" src="http://oceans-ltd.com/wp-content/uploads/2015/03/spacer.gif"></a>