Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #20030
    Sebastian
    Member

    Hello,

    this forum is really good, i could use a few good posts.
    but now, i like to minimize the white space between the widgets in the sidebar.
    is ther any custom css for?

    regards
    seb

    #20038
    Sakin
    Keymaster

    @Sebastian: You can change the margin as per your wish. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* General */
    #secondary .widget { margin-bottom: 40px; }
    /* For screen size above 1190px */
    @media screen and (min-width: 1190px) {
    #secondary .widget { margin-bottom: 50px; }
    }
    /* For screen size below 1160px */
    @media screen and (max-width: 1060px) {
    #secondary .widget { margin-bottom: 30px; }
    }
    /* For screen size below 960px */
    @media screen and (max-width: 960px) {	
    #secondary .widget { margin-bottom: 20px; }
    }
    #20044
    Sebastian
    Member

    right. easy! thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘optimize the space between sidebar widgets’ is closed to new replies.