• https://tommmeeee.com

    1.Open my blog in IE or IE-based browser (works fine in Ff).

    2. Look at my blog. (If nothing is wrong, don’t maximise your window and look what happens.)

    The blog-start drops down to the END of the side-bar.

    What’s the deal there??

Viewing 7 replies - 1 through 7 (of 7 total)
  • you’re apparantly missing a </div> tag…
    https://validator.w3.org/check?uri=https://tommmeeee.com/

    probably either at the end of the sidebar file or the header file…

    Thread Starter tommmeeee

    (@tommmeeee)

    My “page.php” file looks like this:

    <?php get_header(); ?>
    <div id=”wrapper”>
    <div id=”content”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2><?php the_title(); ?></h2>
    <div class=”entrytext”>
    <?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?>

    <?php link_pages(‘Pages: ‘, ”, ‘number’); ?>

    </div>
    </div>
    <?php endwhile; endif; ?>
    <?php edit_post_link(‘Edit this entry.’, ”, ”); ?>
    </div>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    </div>

    Is that okay, because the other files (sidebar/header) are fine..

    Thread Starter tommmeeee

    (@tommmeeee)

    Also, I think I have problems with .htaccess… I just created the file, but it’s empty. What should it contain? My archives are “unavailable”.

    Okay, one problem at a time… ??

    Apparantly you put the missing </div> back in, however yes, the problem is still there.

    Typically, it’s your “index.php” file that holds all your posts… not “page.php” – that one should only be holding your “Pages”, not your “Posts”.

    As far as the .htaccess file, wordpress should be creating that for you, I believe… did you re-create one? where did you put it in the folder structure? (it should be in the root directory. however if the one YOU made isn’t there, but there’s one in there, delete the one YOU made, and leave the one in the root directory alone.)

    Thread Starter tommmeeee

    (@tommmeeee)

    I did’t have a .htaccess in there at all before, so I created a blank one. Is that right?

    As for the first problem, well I’ll play with it some more..

    Where exactly did you put the .htaccess file?

    Thread Starter tommmeeee

    (@tommmeeee)

    It’s in the root directory.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Weird Blog Displacement’ is closed to new replies.