• Hey, thanks for a great plugin.

    I’m using CataBlog for a simple photo gallery here http://sweetpeafestival.org/previous-posters/.

    All was well with the gallery until I was sent a few replacement images so that the lightbox images would be a little larger.

    I deleted the 2 original CataBlog library items, then re-uploaded them again on the “add new” page. I now these spaces on my page as if the old thumbnails are still there. I tried regenerating the images and that didn’t change anything. I’ve gone through this process twice (thinking I may have missed something) and in between steps looked via ftp to make sure my images were gone and they were.

    I’m using a very simple template.

    <div class='catablog-row %CATEGORY-SLUGS%'>
    <div class="catablog-images-column">
    %MAIN-IMAGE%
    %TITLE%
    %DESCRIPTION%
    </div>
    </div>

    Any ideas on this? Thanks in advance for the help.

    http://wordpress.org/extend/plugins/catablog/

Viewing 1 replies (of 1 total)
  • Plugin Author macguru2000

    (@macguru2000)

    You are experiencing a CSS quirk or error. My suggestion would be to remove the catablog-images-column from your template and to also override your theme’s rule to pad every image by 20 pixels, it is causing your images to be wider then the .catablog-row. A suggestion or place to start for styles and template changes

    // Styles
    .catablog-row {
      height: 100px !important
    }
    .catablog-row .catablog-image img {
      padding: 0px;
    }
    
    // Template
    <div class='catablog-row %CATEGORY-SLUGS%'>
    %MAIN-IMAGE%
    %TITLE%
    %DESCRIPTION%
    </div>
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: CataBlog] How can I get rid of "phantom" thumbnails?’ is closed to new replies.