I want to change the contact icon that shows up on the pane to a custom icon that matches my site. However, I tried to css it and it didn't work. It made my custom icon show up along with the default one. Where in the code do I need to look to find where this image is ? I looked in the CSS and in the tpl files but found nothing really except where the contact variable is printed out. This is the css I used:
.author-pane-icon a img{
background-image: url(images/icons/email_icon.png);
width: 50px;
height: 41px;
}
Becky
Comments
Comment #1
michelleWhere the images are depends on who's calling Author Pane. The image directory is passed in the call to the theme function. You'll need to find which directory it's using and change the image there or use the preprocess function to change to a different image directory.
Michelle
Comment #2
beckyjohnson commentedOh ok. Found the image directory! Thanks.
Becky