Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2536594
Padding when sidebar is at bottom
Closed

Comments

  •  1
    5against4 started the conversation

    Hi, when a blog post is viewed on mobile, the contents of the sidebar appears at the bottom of the page. How to reduce the padding before it? See screenshot for examples.

  •  2,699
    PenciDesign replied

    Hi,

    You can add more this code to Customize > Custom CSS to do that:

    @media only screen and (max-width: 960px){
    .container.penci_sidebar #main {
        margin-bottom: 20px;
    }
    }
    

    Change value 20 to value as you want.


    Best Regards,

    PenciDesign

  •  1
    5against4 replied

    i tried that, but even when setting to 1px the gap is still quite large... (see screenshot)

  •  2,699
    PenciDesign replied

    Hi,

    I didn't see the code appears on the front-end. Please change it to:

    @media only screen and (max-width: 960px){
    .container.penci_sidebar #main {    
    margin-bottom: 0;
    }
    }

    Save it to I can check it.


    Best Regards,

    PenciDesign

  •  1
    5against4 replied

    i have added the code, looks the same to me...

  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to reduce it:

    @media only screen and (max-width: 960px){
    .single .post {
        margin-bottom: 25px;
    }
    }
    


    Best Regards,

    PenciDesign

  •  1
    5against4 replied

    That worked - thanks! (Sorry for the delay - i was travelling abroad)