• Hi,
    I’m developing a simple website for a band and want to create a galleries page but have an individual gallery per gig to separate things out.

    I’ve got it how I want it and it lets me add more than one gallery however I want 5 columns of thumbnails which works until I add another gallery which appears with 5 columns but reverts the gallery underneath it back to 3 columns.

    page link:
    http://www.morrisandtheminorsband.co.uk/gallery

    any help would be greatly appreciated.

Viewing 5 replies - 1 through 5 (of 5 total)
  • the first gallery is (partly?) formatted with:

    .container #gallery-1 .gallery-item
    {
      width: auto;
    }

    i.e. with the gallery id within the CSS;
    add more similar styles with further gallery ids to the CSS;

    example:

    .container #gallery-2 .gallery-item
    {
      width: auto;
    }

    etc…

    Thread Starter mhaslamTech

    (@mhaslamtech)

    thanks for the response,
    I’m fairly new to the CSS editing etc, where exactly would I have to make this code modification?

    Thread Starter mhaslamTech

    (@mhaslamtech)

    i found it in style.css, thanks its all working now! 🙂

    possibly locate the .container #gallery-1 .gallery-item
    code in style.css (? I haven’t checked exactly in which of the stylesheets this CSS is) and add the suggested code behind that. or add it at the bottom of style.css; or maybe via a ‘custom CSS’ plugin http://wordpress.org/plugins/search.php?q=custom+css

    to get more familiar with CSS, check online tutorials like http://www.w3schools.com/css/

    Thread Starter mhaslamTech

    (@mhaslamtech)

    Hi again,

    Its now working with the layout as I wanted, however with lightbox, I can’t now scroll thought the gallery, every image just comes up in lightbox as a standalone image.

    any suggestions?

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

The topic ‘problems with multiple galleries on a page’ is closed to new replies.