• Hi, How can I solve the browser problem. My site is ok in Firefox, but not in Internet Explorer. can someone help me with this issue?

    Warmest regards,
    Kris

Viewing 10 replies - 16 through 25 (of 25 total)
  • I just checked the code for page.php and the footer code was already there, this is the code that I currently have on that page..

    <?php get_header(); ?>

    <div id=”content”>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”entry”>
    <h1 id=”post-<?php the_ID(); ?>”>” rel=”bookmark”><?php the_title(); ?></h1>
    <?php the_content(‘Read the rest of this entry »’); ?>
    <div class=”info”>
    <p class=”infoleft”>Posted: <?php the_time(‘F jS, Y’); ?>
    <?php _e(“at”); ?> <?php the_time(‘g:ia’); ?> by <?php the_author() ?> <?php edit_post_link(‘Edit’); ?></p>
    <p class=”inforight”> <?php if ( the_tags(‘Tagged with ‘, ‘, ‘) ) ?></p>
    <br clear=”all” />
    <p class=”infoleft”>Categories: <?php the_category(‘,’) ?></p>
    <p class=”inforight”>Comments: “><?php comments_number(‘No comments’,’1 comment’,’% comments’); ?></p>
    <br clear=”all” />
    </div>
    <?php if ( comments_open() ) comments_template(); ?>
    </div>
    <?php endwhile; else: ?>
    <div class=”entry”>
    <p><b>Sorry, but you are looking for something that isn’t here.</b></p>
    </div>
    <?php endif; ?>
    <div class=”entry”>
    <p><?php next_posts_link(‘« Older Entries’) ?>    <?php previous_posts_link(‘Newer Entries »’) ?></p>
    </div>
    </div>

    <div id=”sidebar”>
    <?php include(TEMPLATEPATH.”/l_sidebar.php”);?>

    <?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
    </div>

    <?php get_footer(); ?>

    But your source shows different set of tags – titles, comment boxes, sidebars etc removed. Perhaps you are using a different template for your pages.

    Pl check.

    S.K

    Just re-uploaded the page.php to make sure it was the correct one I was using and it is, do you want me to paste in any other pages?

    Dashboard -> Pages -> Edit -> Home -> Edit page -> right panel -> template

    Below that what do you see?

    Like that in all other pages like “about” etc?

    S.K

    Im using a template I created called ‘No Sidebar’, the code for it is below..

    <?php
    /*
    Template Name: No Sidebar
    */
    ?>

    <?php get_header(); ?>

    <div id=”content” style=”width:975px; padding-right:0px; border-right:0px;”>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”entry”>

    <?php the_content(‘Read the rest of this entry »’); ?>

    <br clear=”all” />
    <?php endwhile; else: ?>
    <div class=”entry”>
    <p><b>Sorry, but you are looking for something that isn’t here.</b></p>
    </div>
    <?php endif; ?>
    <div class=”entry”>
    <p><?php next_posts_link(‘« Older Entries’) ?>    <?php previous_posts_link(‘Newer Entries »’) ?></p>
    </div>
    </div>

    <?php get_footer(); ?>

    Again, thanks for your help ??

    But your page doesn’t show the footer.

    Pl make sure the template does have the call to the footer and that footer.php is available in the theme directory.

    It will have the following:

    </div>
    <br clear=”all” />
    <div id=”footer”>Black 3column Theme v1.0 by https://www.ikovacic.net. Powered by WordPress!</div>

    </div>
    <?php do_action(‘wp_footer’, ”); ?>
    </body>
    </html>

    Edit:

    I find that the problem still persists. Ok. This is a challenge. I’ll try to drill it tomorrow!

    S.K

    Aha! The footer.php file was empty, i’ve now edited it with what you suggested.

    Can you temporarily revert to default theme, remove the Black 3column Theme directory completely from your wp-content/themes folder (after backing it up in your computer), and reupload the theme without any modification as expanded from the zip folder downloaded, and activate it.

    Let us see if the issue lingers.

    S.K

    Edited post..

    I uploaded my files instead of the originals! That’s the original online now!

    Select default template for the pages. You can modify it later.

    S.K

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘How to fix browser problems’ is closed to new replies.