• I’m trying to troubleshoot a WordPress installation with the Parament theme, and one of the problems I found was that the sidebar is too narrow. I asked in the Fixing WordPress forum and they suggested going here. Is there any way to widen the sidebar? If so, how? Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello psduckie,

    Add below code into active child theme’s style.css file.

    Note : Don’t modify your theme. Use child theme for any modification.


    #main {
    width: 600px;
    }
    #sidebar {
    width: 328px;
    }
    #sidebar .widget-title {
    width: 328px;
    }

    Hope this will helps you.

    Thanks!

    psduckie: You can also add your CSS via Dashboard > Appearance > Additional CSS without need for creating a child theme.

    • This reply was modified 7 years, 6 months ago by dcoleonline.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change sidebar width?’ is closed to new replies.