I want to add a "follow me on Twitter" icon with corresponding link to the very top of my site where the logo bar is. I want to have this icon here instead of the feed icons that normally appear here. I attempted to do this myself hacker style by replacing this CSS:
/*-------------------- POSTS FEED ICON --------------------*/
.posts-icon {
background: transparent url(images/icons/Twitter-2.png) no-repeat scroll 0;
height: 40px;
line-height: 40px;
margin: 0px 10px 0px 20px;
padding-left: 25px;
padding-right: 55px;
/*display: inline-block;*/
display: block;
text-decoration: none;
float: right;
white-space: nowrap;
}
I replaced the image location to the icon and it displayed fine. The only problem was that the link was still for the posts-rss. I know that this link is coming from a php function but I cannot find it. Is there a better way of doing this than the way I am pursuing? How do I add the Twitter link?