How to add text only social media links to WordPress posts

by Roger

For this site I wanted to have only text links for post submissions to Social Media sites like Mixx, Sphinn, Digg etc. and had to search several different sites to find all the code so I thought I would make a quick post with the relevant code for submission to these sites as text only links:

First the CSS which you should add to your main Stylesheet (style.css)

[sourcecode language='css']

.socials {
background-color:#efefef;
text-align:center;
font-size:12px;
font-style:italic;
font-weight:bold;
margin-bottom:10px;
padding:5px 0px 5px 0px;
}

.socials a {
margin-right:10px;
text-decoration:none;
}

[/sourcecode]

Submit codes for Feedburner, Feedburner email, Twit this, StumbleUpon, Sphinn, Mixx, Digg & Delicious.

[sourcecode language='php']