Closed (cannot reproduce)
Project:
Service links
Version:
master
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
4 Mar 2008 at 20:36 UTC
Updated:
31 Oct 2010 at 11:20 UTC
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
Comment #1
sbarsky commentedIt's the formatting of the $links that includes the class "first". (found using Firebug!)
I added the following to my style.css file:
Comment #2
gwood commentedThat fix didnt seem to work for me in Drupal 6
First icon is still above the rest of them
Comment #3
TheCrow commented