Firstly, thanks for the great theme!

I have 2 questions.

1) I am using smaller images for the slideshow (same width just the height of the images is about half). I have figured out everything except how to show the bottom "shadow" for some reason it will not display unless it is the full size image.

2) How do I get the slideshow to appear on every page? Currently it only displays on the home page.

thanks for your help!

Comments

igoen’s picture

Thanks for using whitebull theme.

1. I think you must edit the "slideshow-shadow.png" in images folder. That images shadow designed for images banner with scales 960px x 398px. So when you put images with different scale, you can edit it. Just crop in the middle part, don't crop the corner part.

2. This a pieces of code, from line 115 to 148 in page.tpl.php

<?php if($is_front): ?>        
        <div id="slideshow-wrapper">
            
            <div id="slideshow-outer">
                <div id="slideshow-inner">
                                                                
                                <?php if ($page['slideshow_note'] || $page['highlighted']): ?>
                                <div id="mission-and-slideshow-note">

  ..............................................................................................................................

                                        <div class="slideshow-note note">
                                <!--above is slideshow image config, you can configure it personally,also could to bring more slideshow, just modified it:D -->
                                
                </div>
            </div>
    
        </div>
<?php endif; ?><!--end of slideshow wrapper-->

Just delete for the first line and last line of this code.

Just like this.

<div id="slideshow-wrapper">
            
            <div id="slideshow-outer">
                <div id="slideshow-inner">
                                                                
                                <?php if ($page['slideshow_note'] || $page['highlighted']): ?>
                                <div id="mission-and-slideshow-note">

  ..............................................................................................................................

                                        <div class="slideshow-note note">
                                <!--above is slideshow image config, you can configure it personally,also could to bring more slideshow, just modified it:D -->
                                
                </div>
            </div>
    
</div>

Hope this can help you.

igoen’s picture

Status: Active » Closed (fixed)