I really like this module, but I believe some people (those reading my site, anyway) will recognize services icons and so I'd rather not display the "Post/Search..." line.
Here's a little change that makes this possible using a "display: none;" in your styles.css file.
This does not change the current/default layout.
It's so small I won't bother posting a file for the patch :
--- service_links.module.orig 2006-06-21 11:08:49.373683544 -0400
+++ service_links.module 2006-06-21 11:15:59.832243896 -0400
@@ -288,7 +288,7 @@
}
function theme_service_links_nodeformat($links) {
- return '<p class="service_links">'. t('Bookmark/Search this post with: ') .'<br />'. theme('links', $links) .'</p>';
+ return '<div class="service_links"><div class="label">'. t('Bookmark/Search this post with: ') .'</div>'. theme('links', $links) .'</div>';
}
I'm in no way a css expert : if there's a better/simpler way to do that, I'd like to know!
Comments
Comment #1
frjo commentedCommitted to cvs and 4.7, thanks.
Comment #2
frjo commentedComment #3
(not verified) commented