• Resolved lecapalmeira

    (@lecapalmeira)


    Hi

    How can I change the width of the right column throughout the site (Primary Sidebar) ?. I need to put 300px wide.

    (The page is still under construction.)

    Thank you so much .

    • This topic was modified 8 years, 8 months ago by lecapalmeira.

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • hey,

    Here is some CSS that will allow you to set the width of your sidebar and main content:

    @media (min-width: 992px) {
    .main {
        width: 50%;
    }
    .kad-sidebar {
        width: 50%;
        }
    }

    Just adjust the percentages to be whatever you need. Let me know if that works for you.

    -Kevin

    Thread Starter lecapalmeira

    (@lecapalmeira)

    Hi Kevin

    Where do I put this code?

    hannah

    (@hannahritner)

    lecapalmeira,
    You can paste it into your custom css box in Appearance > Theme Options > Advanced Settings.

    Hannah

    Thread Starter lecapalmeira

    (@lecapalmeira)

    I Hannah

    It works, but I did not want it applied to the homepage. I do not have sidebar on homepage.
    How can I exclude the homepage of this change?

    Thanks

    hannah

    (@hannahritner)

    Try also adding this:

    @media (min-width: 992px) {
    .home .main {
        width: 100% !important;
    }
    }

    Hannah

    From the screenshot, it looks like you’re using the sidebar on your blog. Try this CSS instead.

    @media (min-width: 992px) {
    .blog .main {
        width: 50%;
    }
    .blog .kad-sidebar {
        width: 50%;
        }
    }

    -kevin

    Thread Starter lecapalmeira

    (@lecapalmeira)

    Done!!
    Thanks Hannah and Kevin.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘How to increase the right column?’ is closed to new replies.