• Resolved linburnlane

    (@linburnlane)


    There are 2 things I’d like to do:

    1) Decrease white space between widgets

    2) Decrease width of both right and left sidebars

    Thanks! 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • any url?

    Thread Starter linburnlane

    (@linburnlane)

    Oops, sorry. Try http://mudgeeaeroclub.hwy.com.au/committee/

    I’ve just have the one widget for now, but I’ve stuck on a second one under it to give you an idea 🙂

    Theme Author Styled Themes

    (@gejay)

    Hi there,

    To decrease width of right and left sidebar add this css on child theme style.css

    .col-md-4.right_sidebar {
        width: 289px;
    }

    To decrease spacing you can use following css

    .widget {
    padding: 0.5rem 0rem -2rem 0rem;
    }

    Note: PLease add this css on child theme style.css file so your changes will not lost on theme update.

    Thanks

    Thread Starter linburnlane

    (@linburnlane)

    Thanks! the sidebar CSS works but unfortunately, the widget one doesn’t 🙁
    Yes, am using a Child theme.

    Hang five – I think I’ve found the problem – me!

    Thread Starter linburnlane

    (@linburnlane)

    Apparently, I can increase the padding but can’t go any less than what you can see there now.

    That’s using

    .widget {
    padding: -2rem 0rem -2rem 0rem;
    }

    Theme Author Styled Themes

    (@gejay)

    Hi there,

    In that case there is no space to decrease so padding is not working out there.

    You can try this:

    .widget {
    margin-bottom: -20px !important;
    }

    Note: PLease add this css on child theme style.css file so your changes will not lost on theme update.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Customize page sidebar widget area’ is closed to new replies.