Not signed in (Sign In)

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

    • CommentAuthorpipeline
    • CommentTimeApr 27th 2009 edited
     
    Hello.
    I installed a plogger gallery, edited, but i have a problem with large images.
    My background is gray and when i upload an image plogger add a white frame arround it as you can see on this link: http://www.joseferrero.es/?level=picture&id=192

    I need remove this frame, and is not a css border :(

    Anyone can help me?

    Thanks!
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 27th 2009
     
    It is CSS, but not a border.

    Look to change your gallery.css code from this:
    #picture-holder a img {gallery.css (line 201)
    background:#EFEFEF none repeat scroll 0 0;
    margin:4px;
    padding:3px;
    }
    to this:
    #picture-holder a img {gallery.css (line 201)
    margin:4px;
    padding:0;
    }


    It was the 3px padding and the #EFEFEF background causing the white border.
    Thankful People: pipeline
    • CommentAuthorpipeline
    • CommentTimeApr 28th 2009
     
    Thanks! I'm looking for a border,now works ok!