Thanks!!
Works like a charm...
But every page of my site has sort of a page title that sits on top of the header image and now it gets covered up by the slideshow.
Here's the header code at the start of home.php
<?php get_header(); ?>
<div id="topbanner" class="column span-14"> <!-- start top banner -->
<?php echo nggShowSlideshow(gallery1,965,200) ?>
<div class="pagetitle">
// home
</div>
</div> <!-- end top banner -->
I tried placing the php code after
<div class="pagetitle">
and after
// home
</div>
with the latter pushing the header below the page title.
Here's the css for that header area.
/* Top banner with rotating images
-------------------------------------------------------------- */
#topbanner { height: 200px; border-bottom: 1px solid #999; }
#topbanner_arch { height: 70px; border-bottom: 1px solid #999; background: url(images/bg/archive_banner.png) no-repeat; }
#topbanner_single { height: 70px; border-bottom: 1px solid #999; background: url(images/bg/single_banner.png) no-repeat; }
#topbanner .pagetitle, #topbanner_arch .pagetitle, #topbanner_single .pagetitle { float: left; background: #fff; color: #000; font: 700 2em arial, sans-serif; text-transform: lowercase; letter-spacing: -0.036em; padding: 1px 5px 1px 0; margin: 20px 0 0 0; }
any advice?