• Hi I’m new to WordPress and php so I havn’t quite gotten the hang of all the coding yet.

    When I create a post with a thumbnail and it goes on my home page instead of being placed above the preceding post it kind of overlaps the previous one. Is there any way to fix this? Where would I even find the code relating to the posts on the home page?

Viewing 3 replies - 1 through 3 (of 3 total)
  • please post a link to your site to illustrate your problem.

    without seeing the issue live it is virtually impossible to help with formatting/css questions.

    if it is a formatting problem, you would need to check in style.css;
    for structural html problems, you would start by looking into index.php (depending on your theme – http://codex.wordpress.org/Template_Hierarchy )

    Thread Starter Drax88

    (@drax88)

    ok here it is http://www.uwatchitall.com/

    Edit: Sorry didnt realise it did not go through fixed it/

    you could edit style.css of your theme and add:
    .post { clear: both; }

    that should put the posts underneath each other again, however, the black border might be a bit out-of-place;

    or you edit index.php (the template for the front page, this might be different depending on the theme), find:
    </div><!--/post-<?php the_ID(); ?>-->
    and add this before that line:
    <div style="clear:both;display:block"></div>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Posts overlapping’ is closed to new replies.