hey,
i'm in the process of learning how to create templates and i've run into my first snag. i've been able to select my template and apply it to a page but the images (two of them) that are part of the template are not showing. i'm using <img src="/images/mypic.gif" alt="" /> for the image. any help is greatly appreciated! thanks! jason
Define "not showing"? Is the HTML making it to the page but it isn't finding the images? It sounds like a rewrite problem, where is the images directory compared to the web root within the file syste?
If you're using the image in your template files, and your images are in the "images" directory in your theme directory, you need to use:
<img src="<?php bloginfo('template_directory') ?>/images/image.jpg" />
oh awesome! that worked. thanks. j