Reduce the width of my right side bar

  • Unknown's avatar

    Hello,

    How could I reduce the width of my right side bar?

    Thanks a lot

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

  • Hi there,

    If your plan for WordPress.com is “Premium” or “Business“, you can use custom CSS function. So please add CSS code below.

    The width of content-area(=left side area) is 75%, and the width of sidebar(=right sidebar) is 25% by default. So I changed to 80:20. You can change ratio whatever you want. But please make sure that it’s 100% in total.

    .content-area {
        width: 80%;
    }
    
    .sidebar {
        width: 20%;
    }

    If you have further questions, please let me know.

  • Unknown's avatar

    Brilliant, thanks a lot!

  • The topic ‘Reduce the width of my right side bar’ is closed to new replies.