You could simply replace the rss.png file (the current image) in your theme’s images folder with your own rss image. With regard to your image, was there a fixed header width and height given in Admin/Appearance/Custom Header when you chose your new header image?
Yes. It remained it’s original height of 120px. I was hoping it would match the height I set in the style sheet. Is there a better way to change height? The height of my image is 234px.
You may have to edit your theme’s functions.php file. You need to look for something like:
define('HEADER_IMAGE_HEIGHT', 120);
and change the value to 234.
I couldn’t locate the image folder for my theme. I still managed to replace the image but I’d rather reference it from the correct place. Can you point me in the right direction? I’m temporarily referencing the image from the /upload/ folder. Not the best practice.
It should be in wordpress/wp-content/themes/irrigation/
Ah – that makes sense. I was missing the /wp-content/ in the link. THANKS.