Forums

[Plugin: NextGen Gallery] Images at bottom of page (2 posts)

  1. eazi.it
    Member
    Posted 9 months ago #

    In my site the gallery page shows all pictures below the rest of the site?

    http://www.arufc.com/gallery

  2. webmatter
    Member
    Posted 9 months ago #

    Look in your stylesheet ~line 132 for
    .post {
    margin-top: 0pt;
    margin-right: 0pt;
    margin-bottom: 25px;
    margin-left: 0pt;
    background-image: url(img/resultsbg.png);
    background-repeat: repeat-x;
    }

    add a float: left; :

    .post {
    margin-top: 0pt;
    margin-right: 0pt;
    margin-bottom: 25px;
    margin-left: 0pt;
    background-image: url(img/resultsbg.png);
    background-repeat: repeat-x;
    float:left;
    }

    Then it should work ...

Reply

You must log in to post.

About this Topic