Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #269975
    Shane Stillmunkes
    Participant

    1.Can I get zero padding between the images for ALL of my galleries on the following pages:

    http://shanesphotographs.com/shanes-portfolio/portraits/
    http://shanesphotographs.com/shanes-portfolio/couples/
    http://shanesphotographs.com/shanes-portfolio/family/
    http://shanesphotographs.com/shanes-portfolio/weddings/

    (I want each image to touch one another, no white space between them)

    2.How do I take the bottom padding on ALL pages?

    3.How do I take the padding off of the top image on my about page? I want to eliminate the white space between “Where it all started…” and the image right underneath.

    http://shanesphotographs.com/about/

    THESE ARE MY LAST QUESTIONS, THEN I AM DONE!

    #270017
    Skandha
    Participant

    @shanesphotographsllc: Hello there,
    Go to => Appearance => Customize =>Additional CSS and add the following CSS Code.

    /* To remove the space between images */
    .blocks-gallery-item {
        margin-bottom: 0 !important;
    }
    
    /* To remove the padding at the bottom on all pages */
    .singular-content-wrap, #content .wrapper {
        padding-bottom: 0;
    }
    
    /* To remove the white space in about page */
    .alignfull {
        margin-bottom: 0;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #270019
    Shane Stillmunkes
    Participant

    Yes, the first and third worked, thank you!

    But, I’m having problems with the galleries on the homepage. Is it possible to only target the pages I listed above? (Portraits, couples, family, weddings) The missing padding on the homepage messed the alignment of everything.

    Thank you so much for your help.

    #270020
    Skandha
    Participant

    @shanesphotographsllc: Hello there,
    To exclude homepage add the code body:not(.home) before the above CSS Code.

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Gallery Padding and Bottom of Page Padding’ is closed to new replies.