• Hi!
    Can anyone tell me how I can center the sidebar widgets and how I add a vertical line to split it from the main content.

    Thank you

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • hannah

    (@hannahritner)

    Hey,
    To center your sidebar widgets you can add this to your custom css box in Theme Options > Custom CSS:

    .sidebar .widget-inner {
        text-align: center;
    }
    .sidebar div#gr_challenge_7501 {
        display: inline-block;
    }

    And this css will add a vertical line:

    @media (min-width: 992px) {
    .sidebar {
        border-left: 1px solid #333;
    }
    }

    Hope that helps!

    Hannah

    Thread Starter duntax

    (@duntax)

    Yes! Worked like a charm. Thank you so much

    hannah

    (@hannahritner)

    No problem!

    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar centering and lines’ is closed to new replies.