Okay, so I've got the following code in my page.tpl.php (and page-front.tpl.php):

<img src="<?php print $directory;?>/images/top-ad.jpg" alt="an ad" />

This displays on the frontpage, but on other pages in the site, it just displays the alt text. Looking at the source, it seems to be pointing to the same place, so I don't understand why it isn't working on those other pages. Any suggestions, things that would work?

-Dave

Comments

skywalker2208’s picture

Try using path_to_theme with theme_image.
Here is an example

print  theme('image', path_to_theme() .'/images/rss.png');