Support » Fixing WordPress » Please help, my images overlap the posts

Viewing 6 replies - 1 through 6 (of 6 total)
  • What browse are you using? It looks fine in Firefox. I guess that means that you may have a problem with the CSS stylesheet.

    Try putting this around your image element:
    <div style="margin:10px;"> .... your image .... </div>

    Put <br clear="all" /> at the end of the post.

    Thread Starter iraq

    (@iraq)

    I modified href=Relaxation-3 column into a full width, I didn’t touched the *.php files, I only modified the CSS.
    Can I use the div or the br in the CSS so images will stay in the post auto???

    Update
    The <br clear=”all” /> don’t work

    Where did you put it? If you go in and edit your post, and put it at the end, it certainly should work.

    <div> and <br...> are (X)HTML tags – they have to go either in your template or in your posts, not in the CSS file.

    It looks like you got things fixed but I thought I’d add my .02.

    Try <br style=”clear: both” /> or better yet add a clearer div to your css:

    .clear{
    height:1px;
    overflow:hidden;
    clear:both;
    margin-top:-1px;
    }
    Then add this after your photos that are overlapping text:

    <div class=”clear”> </div>

    Thread Starter iraq

    (@iraq)

    I solved the problem, thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Please help, my images overlap the posts’ is closed to new replies.