Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #54494
    Simon
    Participant

    Hi,

    I use Catch Box Pro.

    And i want to have the hompage on full width. (to have bigger content and widgets)

    At first it was very easy to do this.

    #page {
    	margin: 0 auto 2em;
    	max-width: 95%;

    i added this to CSS and it worked.

    Now I updated to 4.1.
    Now, the content on the left side don’t reach the widgets on the right side.

    Please, can you help me with an CSS Code. Thanks

    Have a look –> http://www.rheinbrueder.de

    #54499
    Sakin
    Keymaster

    @Simon: Replace your css with the following css. In the following css, you can adjust the primary width and secondary sidebar width as per your need.

    @media screen and (min-width: 961px) {
    .site {
            margin: 0 auto 2em;
            max-width: 95%;
        }
        #primary {
            width: 67%;
        }
        #secondary {
            width: 30%;
        }
    }
    #54503
    Simon
    Participant

    Hi,

    It works fine, thanx!

    Simon

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘max-width of whole page’ is closed to new replies.