panantukan
Member
Posted 4 years ago #
I have an image I want to display in the footer of my blog
http://www.nationaleconomy.net/blog
You can see the footer with the image at http://www.nationaleconomy.net
Yes, the image file is there and the path is correct and everything. I have no idea why the image will only not show on the WordPress page.
Hi
The image is being called from a different folder, relative to the image location. I saw the image appear when I changed its code in your footer to this:
<img height="24" width="22" src="../images/biting.png"/>
If the same code is calling the image in both the blog and the main page change the src to the full path of where the image is located on your site, like this: ((this may not be the way your site's folders are laid out - you must adjust for your folder layout))
<img height="24" width="22" src="/wp-content/themes/{themenname}/images/biting.png"/>
panantukan
Member
Posted 4 years ago #
@stvwlf
Thanks! Putting in the full path got it to work.