• Resolved 101mac101

    (@101mac101)


    I have a strange problem, the footer is not showing on IE 7 or 8, it seems that if I remove the PHP for displaying posts it shows fine or if I move it before the PHP, again it shows fine, but obviously in the wrong position.

    It seems that anything after the posts PHP code will not show on IE.

    The code is below: Any help please??

    <head>

    <link rel=”shortcut icon” href=”/favicon.ico”>
    </head>

    <?php
    /*
    Template Name: Softeners
    */
    ?>
    <?php get_header(); ?>

    <div id=”content”>
    <div id=”subheader”><div id=”leftcolhome”>

    <div class=”leftcolboxhome”></div>
    </div>
    <div id=”centrecolhome”>
    <div id=”flashbox”>
    <img src=”http://www.the-water-works.co.uk/wp-content/themes/watermelon/images/minimax-offer.jpg”/&gt;

    </div></div>
    <div id=”rightcolhome”>
    <div class=”rightcolboxhome”></div></div>
    </div>

    <div id=”col1homepage”>
    </div>
    <div id=”col4homepage”>
    <div class=”ducks”> </div>
    <div class=”ducks1″> </div>
    <div class=”ducks2″> </div>
    </div>

    <div id=”colshome-scroll”>
    <div id=”heading”>Welcome to The Water Works</div>

    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>

    <div class=”entry”>
    <?php the_content(‘Read the rest of this entry »’); ?>
    </div>

    <?php endwhile; ?>

    <div class=”navigation”>
    <div class=”alignleft”><?php next_posts_link(‘« Older Entries’) ?></div>
    <div class=”alignright”><?php previous_posts_link(‘Newer Entries »’) ?></div>
    </div>

    <?php else : ?>

    <?php endif; ?>

    </div>
    </div>
    </div>

    <?php get_footer(); ?> //this is not showing in IE7 or 8//

  • The topic ‘footer missing IE7 and IE8, fine in firefox’ is closed to new replies.