• Resolved zoltarzoltar

    (@zoltarzoltar)


    Hi!

    Is it possible change the size of the left bar (with widgets and header) to 300px ?

    I’ve tried to inspect the html but I’m not able to understand which file is the right one. I’ don’t want to make a disaster!

    Thank you for your help!
    grazie!

    • This topic was modified 7 years, 4 months ago by zoltarzoltar.
Viewing 2 replies - 1 through 2 (of 2 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, looking at the CSS and HTML on your site, at screen widths of 65em and wider, the sidebar is right at 300px (18.9em). Below 65em and down to the point that the site changes to a single column, the width of the sidebar is around 240px (14.79em). The reason for the drop in size is to keep your content prominent and readable for your visitors. The following will keep the sidebar at 300px in width clear down to 51em in width.

    @media screen and (max-width: 65em) and (min-width: 51.0001em) {
      .site-header {
        width: 300px;
      }
      .site-content {
        max-width: 56% !important;
        width: calc(100% - 300px) !important;
      }
    }
    Thread Starter zoltarzoltar

    (@zoltarzoltar)

    THANKS!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change widget bar size’ is closed to new replies.