[Support request] Full Width Container Box Needed

Home Forums Support [Support request] Full Width Container Box Needed

Home Forums Support Full Width Container Box Needed

  • This topic has 3 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1208138
    Soumyadip

    Hi tom, david
    I will be creating few new pages where I will be displaying list categories with no sidebars on those pages..
    I have checked the Content (no sidebars) but the box container is still showing the same width..
    see the screenshot i.is.cc/1qMtNyOh.jpg
    I want it to cover the whole area of the window as mentioned in the screenshot
    Thanks!

    #1208205
    David
    Staff
    Customer Support

    Hi there,

    its because of this CSS:

    @media (min-width: 769px) {
        #primary {
            width:calc(100% - 330px)
        }
    
        #right-sidebar {
            width:330px
        }
    }

    change it to:

    @media (min-width: 769px) {
        .right-sidebar  #primary {
            width:calc(100% - 330px)
        }
    
        #right-sidebar {
            width:330px
        }
    }
    #1209218
    Soumyadip

    Thanks David, it is now solved

    #1209361
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.