Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author macguru2000

    (@macguru2000)

    You can use CSS to set the display property of the images to none and then use the first-child pseudo class to then turn the display property to block for just the first catalog thumbnail. Try adding this code to your theme’s style.css file or a catablog.css file in your theme.

    html body .catablog-catalog .catablog-row .catablog-image {
      display: none;
    }
    
    html body .catablog-category .catablog-row:first-child .catablog-image {
      display: block;
    }

    That would be a great feature. Here’s an example of this kind of functionality done with (I assume) something other than WP.

    http://americanart.si.edu/exhibitions/online/multiplicity/
    See the 2nd image of the 2nd set for this feature.

    Use Shutter Reloaded because it makes sets automatically.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: CataBlog] Multiple photos in category’ is closed to new replies.