I've been messing around trying to see if I could get a rotating header (I'm helping my sister with a site for a school) and I've almost got things working.
1) Using NextGen gallery, I created a gallery called header_images and loaded my images to it.
2) I edited header.php and changed
-----------------------------------------------------------------
<!-- Header -->
<td id="header" colspan="<?php echo $cols; ?>">
<?php bfa_header_config($bfa_ata['configure_header']); ?>
</td>
<!-- / Header -->
-----------------------------------------------------------------
to
-----------------------------------------------------------------
<!-- Header -->
<td id="header" colspan="<?php echo $cols; ?>">
<?php
if (function_exists("nggSlideshowWidget"))
{ nggSlideshowWidget(6,1440,250); }
?>
<?php bfa_header_config($bfa_ata['configure_header']); ?>
</td>
<!-- / Header -->
-----------------------------------------------------------------
where '6' was the number of the gallery and 1440 is the width of images and the value set in Layout MAX width, while 250 is the hight of the images.
Now the images show up and rotate based on the duration set in the slideshow duration, but the image doesn't honor the other header settings. It's like it sits on top of the page and isn't paying attention to the settings for the header.
Is there any way to have it adhere to the other settings for the header?