[Resolved] Maximum content width adjustment

Home Forums Support [Resolved] Maximum content width adjustment

Home Forums Support Maximum content width adjustment

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #904158
    Hasan

    On a large screen, my site contents are shown on maximum set width, but have margin on the left and right side, which is nice.

    However on medium screen, the content is shown edge to edge: http://prntscr.com/nqhf84

    How can I set maximum content with on the medium screen to say 90%.

    Also how to display the contents on this page (created with Show Posts) edge to edge for mobile, same as the home page?

    Thanks!

    #904281
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media (max-width: 1480px) {
        #content {
            margin-left: 20px;
            margin-right: 20px;
        }
    }
    #918233
    Hasan

    Thanks David!

    Used a slightly modified media quary and it worked!

    #918309
    David
    Staff
    Customer Support

    Awesome – glad to be of help

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