• Hello,

    I have updated to latest version of theme, but it seems to have made my right sidebar smaller in width. I just want to make the right sidebar a little wider. Actually the main content could also move over to the left a bit too.

    https://www.mugeturner.com

    ANy ideas?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    The left side bar seem to be controlled by .col-lg-9 which has a width of 75% and the right sidebar is controlled by .col-lg-3 which has a width of 25%.

    In your child theme CSS file try changing to above percentages to suit.

    Example;

    .col-lg-9{
    width: 70%;
    }
    
    .col-lg-3{
    width: 30%;
    }
    Thread Starter mugeturner

    (@mugeturner)

    Hello,

    Yep, Thats sorted the ratio out a lot nicer. Thankyou.

    It would be nice though to have the overall width of the page and sidebar together, wider (so there is not such a gap to the left of the content, and to the right of the sidebar).

    Would you know how to do this?

    Hi,

    This is controlled by .container which is currently set to 1170px.

    Try this;

    .container {
    width: 1250px;
    }

    I would not recommend going to much higher than 1250px but of course it is totally a matter of preference.

    Thread Starter mugeturner

    (@mugeturner)

    perfect. Thank you very much

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘change width of right sidebar’ is closed to new replies.