Not signed in (Sign In)

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

  1.  
    Seems like this would be an easy one...
    but on the 3 sites I have installed plogger on, the thumbnails are all off to the left.

    Please help!

    Thanks
    • CommentAuthorddejong
    • CommentTimeDec 5th 2005
     
    It might be possible, but it would be dependent a limitation of the Cascading Style Sheets specifications, not of Plogger itself. At the moment, thumbnails are floated left. They could be floated right, if you preferred, but there is no centering property. When I finish typing this, I might take a break from a research project (entirely unrelated to computer science) and look at how one might accomplish your desired effect.

    It's complicated by the fact that, if you didn't know, every browser handles CSS differently, and some, like Internet Explorer (5.5, 6.0 and even 7.0 Beta), just get a failing grade altogether.

    Regards,
    Derek
    • CommentAuthorTommy M
    • CommentTimeJul 7th 2006 edited
     
    I found this to work.

    In gallery.css change

    ul.slides {
    margin:0;
    .............

    to

    ul.slides {
    margin:0 0 0 100px;
    ............

    adjust the value of the left and right margin until it centered!

    You can also control the number of thumnails per row by setting the width, say

    ul.slides {
    margin:0 0 0 175px;
    width:400px;
    ............

    with thumbnails 100px squares.

    T
    • CommentAuthorZappu
    • CommentTimeJan 16th 2007
     
    Enter this to the gallery.css , helped for me

    #thumbnail_container {
    padding-left : 5%;
    }

    Zappu
    • CommentAuthordymo310
    • CommentTimeJan 20th 2007
     
    thx Tommy M. that worked perfectly. instead of a workaround, it fixed the problem

    :-)