• Resolved Frank

    (@fwulfers)


    When the browers window is at 1200px, the main content is set at a width of 75% and the side bar at 25%. When the browser window is made smaller at a min-width of 992px, the body is 66.6% and side bar 33.3%.

    Is there an easy way to change this to 75% / 25% as well? I found this code in the pinnacle.css file but there are many places where this has to be changed.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey so in your theme options > custom css box you can add this:

    @media (min-width: 992px){
    .main.col-lg-9.col-md-8 {width: 75%;}
    aside.col-lg-3.col-md-4 {width: 25%;}
    }

    Kadence Themes

    Thread Starter Frank

    (@fwulfers)

    Fantastic, that works great! Thanks so much.

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

The topic ‘Browser window size – main content and side bar width’ is closed to new replies.