Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #51525
    Joseph
    Member

    In Catch Everest Pro, how can I get selected images from a Gallery page to display in the centre of the page when viewed individually? At present the selected images display aligned to the left side.
    Also how can I remove the information above the selected image that states the edit date and also remove the link to the full size image, leaving only the link back to the Gallery?

    #51595
    Sakin
    Keymaster

    @Joseph: Please post in your gallery page URL so that I can check in and give you suggestion.

    #51604
    Joseph
    Member

    http://jcomerford.ca/galleries/canopy-gallery/

    Hi Sakin, Here is the Gallery URL. As you will see the site is primarily several Galleries of different products, so there is quite a few images affected on all the Galleries. The Canopy Gallery has one image No.7 that for some reason is centred but with no additional editing done to it. No.8 was also centred but when I edited it to give it a number and saved changes it too was now aligned to the left. No.7 and No 8 in the Canopy Gallery are the only images that have been aligned to the centre at any time. All other Gallery images were aligned left always.
    Thanks
    Joseph

    #51684
    Sakin
    Keymaster

    @Joseph: Sorry we have no control on this. This is default gallery from WordPress.

    You can add the following css to make it center:

    .attachment .entry-attachment {
        text-align: center;
    }
    .attachment .entry-attachment a {
        display: inline-block;
        margin: 0 auto;
    }

    That number below the gallery is the Caption in theme image. If you don’t want that then edit that image and remove the caption.

    To remove date from attachment, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .attachment .entry-meta { display: none; }

    But to remove the link to full image, you cannot do that from Custom CSS. For this you need to build child theme. Check this http://catchthemes.com/blog/create-child-theme-wordpress/ for child theme. The copy image.php in yoru child theme and edit that link.

    #52217
    Joseph
    Member

    Thanks Sakin,

    Problem solved.

    #52457
    Joseph
    Member

    In Catch Everest Pro how can I remove the white lines framing the images in the Gallery pages?
    http://jcomerford.ca/galleries/canopy-gallery/
    Thanks,
    Joseph

    #52471
    Sakin
    Keymaster

    @Joseph: You can add the following css in “Appearance => Theme Options => Custom CSS”
    #content #gallery-1 img { border: none; }

    #52513
    Joseph
    Member

    @Sakin

    Thanks again,looks much better.

    Joseph

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Centring selected Gallery images.’ is closed to new replies.