[Support request] generate blocks full width page

Home Forums Support [Support request] generate blocks full width page

Home Forums Support generate blocks full width page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1549517
    a1reno

    Hi,

    I can’t seem to make a full-width page using generate blocks even though I seem to have all the settings that I can think of set to full width.

    Any ideas?

    Thanks

    #1549910
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS which is affecting the width of the main content across the entire site:

    @media only screen and (min-width: 769px) {
        #primary {
            max-width: calc(100% - 300px);
        }
    
        #right-sidebar {
            min-width: 300px;
        }
    }

    If you need that CSS still, change it to this, it will only apply to pages where the right-sidebar is enabled:

    @media only screen and (min-width: 769px) {
        .right-sidebar #primary {
            max-width: calc(100% - 300px);
        }
    
        .right-sidebar #right-sidebar {
            min-width: 300px;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.