Would be great if there was options to show/hide labels, and options for verticle or horizontal icon display.

(on a side note would also be great if identi.ca/status.net was included)

Comments

q0rban’s picture

Category: feature » support
Status: Active » Fixed

Hi! The display is controlled completely by CSS, so it's trivial to alter it in your custom theme. Here are some examples.

To remove the text and only display icons:

    a.follow-link {
      width: 24px;
      height: 25px;
      text-indent: -9999px;
    }

To remove all text and have icons sit next to each other:

    a.follow-link {
      width: 24px;
      height: 25px;
      text-indent: -9999px;
      float: left;
      margin: 0 8px 8px 0;
    }

sbanton’s picture

Hi,

I'm trying to get the icons to be displayed to the right of the "Follow us on" tag. Is this possible?

Currently, the icons are appearing to the right.

Thanks,

SB

q0rban’s picture

Hey there, you can try the following. YMMV. ;)

a.follow-link {
	height: 30px;
	display: block;
	line-height: 26px;
	padding: 0 28px 0 0;
	background-position: 100% 0;
	background-repeat: no-repeat;
}

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.