Quantcast
Channel: PHP Problems - CSS-Tricks Forums
Viewing all articles
Browse latest Browse all 47

zen photo help

$
0
0
k i'm customizing a photo gallery using zen-photo but i can't figure out how to put a header image on the top of the container.
<div id=\"main\">
<img src=\"images/top-container.png\" />
<div id=\"gallerytitle\">
<?php if (getOption('Allow_search')) { printSearchForm(''); } ?>
<h2><?php printHomeLink('', ' | '); echo getGalleryTitle(); ?></h2>
</div>

<div id=\"padbox\">

<div id=\"albums\">
<?php while (next_album()): ?>
<div class=\"album\">
<div class=\"thumb\">
<a href=\"<?php echo htmlspecialchars(getAlbumLinkURL());?>\" title=\"<?php echo gettext('View album:'); ?> <?php echo getAnnotatedAlbumTitle();?>\"><?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?></a>
</div>
<div class=\"albumdesc\">
<h3><a href=\"<?php echo htmlspecialchars(getAlbumLinkURL());?>\" title=\"<?php echo gettext('View album:'); ?> <?php echo getAnnotatedAlbumTitle();?>\"><?php printAlbumTitle(); ?></a></h3>
<small><?php printAlbumDate(\"\"); ?></small>
<p><?php printAlbumDesc(); ?></p>
<img src=\"images/bottom-container.png\" />
</div>
<p style=\"clear: both; \"></p>
</div>
<?php endwhile; ?>
</div>
<br clear=\"all\" />
<?php printPageListWithNav(\"&laquo; \".gettext(\"prev\"), gettext(\"next\").\" &raquo;\"); ?>

</div>


should i put the image in the css or something? i tried just putting <img src="images/top image.png" /> but that doesn't seem to work. anyone have any idea what i should do?

Viewing all articles
Browse latest Browse all 47

Trending Articles