geckoblog
Member
Posted 4 years ago #
How do I change my RSS icon?
I know how to change the icon, but how do I get rid of the code before the icon?
Code:
<img style='background:orange;color:white;border:none;' width='14' height='14' src='http://blog.mytechnix.net/wp-includes/images/rss.png' alt='RSS' /></a>
I would like to change the rss feed icon to a gif. what file should I edit?
thanks
I'm some-what confused on what your question actually is. For starters, reading about the HTML img tag might help you better understand what is going on.
I would like to change the rss feed icon to a gif. what file should I edit?
If I understand you correctly... I would recomend finding the original RSS feed icon, most likely located in your themes image folder. Change it to .gif, keep the name the same and image size (height/width) the same and simply replace the old image with your new .gif. If you need to change the image size, this can also be done, just post back.
pdooley
Member
Posted 4 years ago #
I am trying to change my rss icon. I thought I was successful, but when I visit my live site the icon does not appear.
I entered: class="boldtxt"><img src="<?php bloginfo('template_url'); ?>image/RSS_by_hectorbambino.jpg" align="left" border="0"
What am I doing wrong?
@pdooley: you forgot the "slash" before the "image".
it should be:
<div class="boldtxt"><img src="<?php bloginfo('template_url'); ?>/image/RSS_by_hectorbambino.jpg" align="left" border="0"/></div>