Hello,

Where can I find the styling/CSS for the service links? I can't seem to find them in any file. I would like to fix the first image link so it doesn't get offset - but I can't find where the styles are.

thanks!

By the way, I did find this area - but no styles were there:

function theme_service_links_node_format($links) {
  return '<div class="service-links"><div class="service-label">'. t('Bookmark this post with:') .'</div>'. theme('links', $links) .'</div>';
}

function theme_service_links_block_format($items) {
  return '<div class="service-links">'. theme('item_list', $items) .'</div>';
}

Comments

sbarsky’s picture

It's the formatting of the $links that includes the class "first". (found using Firebug!)

I added the following to my style.css file:

.terms ul.links li.first {
  padding-left: 0;
}
gwood’s picture

sbarsky - March 31, 2008 - 20:58

That fix didnt seem to work for me in Drupal 6

First icon is still above the rest of them

TheCrow’s picture

Status: Active » Closed (cannot reproduce)