Okay
  Public Ticket #257994
spacing in sidebar
Closed

Comments

  • Jacob started the conversation

    Is there anyway to reduce the spacing between widgets in the blog and page sidebars? Also, I\'m interested in reducing/eliminating space between images in my blog posts. Any advice? Thanks for your time.

  •  8,839
    Tahir replied

    Hey Jacob!

    To reduce the space btw sidebar divs use this custom css. Add this into the Custom CSS box located in your Salient Options panel :

    #sidebar > div {
        margin-bottom: 25px !important;
    }
    

    And for the image :

    body.single-post .post-content p img {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    

    Cheers


    ThemeNectar Support Team 

  • Jacob replied

    Thanks Tahir, that worked perfectly.