Changing Widget width

  • Unknown's avatar

    These forums were really helpful in the past, and I’m hoping this time it helps again.

    Basically, I’m using Image widgets to create buttons for the right side bar of the page. As you can see, there’s a lot of space all around it, and I don’t know how to change that. I’m afraid I’ll change the wrong thing.

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Each of those image widgets in the secondary widget area have top and bottom margin of 22px and a bottom padding of 26px.

    Let’s change the top and bottom margins to 5px each and remove bottom padding.

    div#secondary.widget-area .widget_image {
        margin-top: 5px;
        margin-bottom: 5px;
        padding-bottom:0;
    }

    Please don’t hesitate to adjust those values until you get the spacing you would like :-)

  • Unknown's avatar

    Thank you so much! This worked great!

  • The topic ‘Changing Widget width’ is closed to new replies.