Use the one of the parent elements the links are wrapped in. For example:
<div class="node"> <div class="links"> <ul> <li> <a href="#"><img src="....." /></a> </li> </ul> </div> </div>
You can do something like this in CSS:
.node .links li img {
}
That would apply CSS to the image as long as nothing else overrides it in the CSS selector hierarchy.
Jamie Holly http://www.intoxination.net http://www.hollyit.net
On 9/23/2011 4:40 AM, Salvatore De Paolis wrote:
On Thu, 22 Sep 2011 18:41:05 -0700 (PDT) "Ms. Nancy Wichmann" nan_wich@bellsouth.net wrote:
The CSS. If you don't have Firefox w/Firebug or Chrome, get one of them.
I was using firebug already but I'm not sure it's all about CSS. Pictures are hardcoded in the module, so it must probably be in a different way overriding the $info array.
$info['link'] = array ( 'name' => t('Link'), ... 'icon' => $image_path . 'images/link.png'; ...
Thanks, Sal