• Hi all,
    I have the FlashFader plugin installed and set up correctly.. works beautifully.

    I wanted my new Flash slideshow to show up on my home page. Unfortunately, the only way to really do this is via the page.php file.

    It works great in FireFox, showing up below the main text… but in IE7, it appears off to the right, along the right hand side of the text (and off the screen).

    Why?

    Here is the page.php code:

    <?php get_header(); ?>
    
    	<?php if (have_posts()) : ?>
    		<?php while (have_posts()) : the_post(); ?>
    			<div class="post" id="post-<?php the_ID(); ?>">
    
    				<h1><?php the_title(); ?></h1>
    
    				<div class="entry">
    					<?php the_content('Read the rest of this entry &raquo;'); ?>
    <?php if ( is_page(8) ) { ?>
    	<!-- Flashfader -->
    	<p></p><p><?php include (ABSPATH.'wp-content/flashfader/flashfaderhtml.txt'); ?></p>
    	<!-- /Flashfader -->
    <?php } ?>
    				</div>
    
    			</div>
    
    		<?php endwhile; ?>
    
    	<?php else : ?>
    
    			<h2 align="center">Not Found</h2>
    
    			<p align="center">Sorry, but you are looking for something that isn't here.</p>
    
    	<?php endif; ?>
    			</div>
    
    	<?php get_sidebar(); ?>
    
    			<div class="clearer">&nbsp;</div>
    
    	</div>
    
    <?php get_footer(); ?>

    Any thoughts?

  • The topic ‘FlashFader, IE7.. FML’ is closed to new replies.