Has anybody been able to reformat the follow block? (where you provide links to twitter, facebook, etc)

they automatically show up in a vertical list.

Id like to have them all in a horizontal row.

Seems easy right? I cant seem to get it.

Thanks!!!
Nikki

Comments

scw’s picture

theme_follow_links into template.php would be a good start...
if u strip out the title ( i assume displaying horizontally a title makes no sense, right?) u have to take care in the css, caus there's a 'display:block'...
or theme_follow_link, there is how the link is put together... -> modify in template.php
if it's not for a community site u do better your own block ( that was my decision). cheers

komal.savla’s picture

Try out this css to have all the links of the follow block in the horizontal row

#block-follow-site {
  float: left;
  width: 320px;
}

#block-follow-site .content {
  float: left;
}

#block-follow-site .follow-links a{
  float: left;
  margin: 0 0.5em 0 0;
}
ddominjr’s picture

This worked great - thank you. I pasted your code at the top of my follow.css file.