I wanted to hack the Follow module. The readme text described exactly what I want but when I made the change, which removes the text and has the icons in a row, it seems to run into the next block. The changes are all made through the CSS file. Not incredibly experienced with CSS. Here is what I have now:
a.follow-link {
height: 30px;
display: block;
line-height: 26px;
padding-left: 28px;
text-indent: -9999px; /* added */
/* float: left; added */
margin: 0 8px 8px 0; /* added */
background-position: 0 0;
background-repeat: no-repeat;
Here is what the README suggests (which has the Follow block run into other blocks):
a.follow-link {
width: 24px;
height: 25px;
text-indent: -9999px;
float: left;
margin: 0 8px 8px 0;
}
Thanks in advance for the help.
Jason
Comments
PS
It is the "float: left;" that seems to cause the problem which is why it is currently commented out. Thanks.