fishgun
Member
Posted 2 years ago #
I'm using the Modern Clix theme on my blog http://cashdoodle.com
I've created a custom header image in the header.php file, and this shows up on the homepage ok, but when I view a single page or a single post, the image placeholders load in, then disappear and are replaced with"home" in text.
I also have the pixopoint navigation plugin running. I tried deactivating this to see if it was causing the problem but nothing changed.
this is caused by the relative path to your image file:
<img src="images/blogheaderFeb10_02.png" width="143" height="105" alt="">
try and use an absolute path instead:
<img src="<?php bloginfo('wpurl');?>/images/blogheaderFeb10_01.png" width="143" height="105" alt="">
same with the other little images..
http://codex.wordpress.org/Template_Tags/bloginfo
fishgun
Member
Posted 2 years ago #
Nice one, thanks for that.