Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    Can somebody help me with this http://april-rhapsody.org/gallery/index.php?level=album&id=4
    The space at the bottom part of the thumbnail is too big
    I dunno which part of the CSS is it
    • CommentAuthorHuroman
    • CommentTimeDec 5th 2009
     
    Well, your template is "liquid width" style. In order to fix the space at the bottom you have to change the width class "#plog-wrapper":


    #plog-wrapper {
    margin: 0 auto;
    width: 100%;
    }


    to

    #plog-wrapper {
    margin: 0 auto;
    width: 960px; /* The width could be different, of course */
    }


    The file is "gallery.css", into plog-content > themes > yourtheme

    Hope you can fix it.