Site logo

[Resolved] Move sidebar bottom on tablet in GP 3 Flexbox

Home Forums Support [Resolved] Move sidebar bottom on tablet in GP 3 Flexbox

Home Forums Support Move sidebar bottom on tablet in GP 3 Flexbox

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1475666
    _blank

    Hello,

    How to move the sidebar to the right on the blog home page and articles at the bottom of the page above the footer? Before I used css code:

    @media (min-width: 769px) and (max-width: 1024px) {
    .sidebar, .content-area {
        float: none;
        width: 100%;
        left: 0;
        right: 0;
        }
    }

    But since GP 3 and Flexbox, it no longer works.

    Cordially.

    #1476049
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    @media(max-width: 1024px) and (min-width: 769px) {
        .site-content {
            flex-direction: column-reverse;
        }
    }
    #1476066
    _blank

    Hello David,

    It doesn’t work, it just puts the sidebar on the left above the content.

    Cordially.

    #1476210
    David
    Staff
    Customer Support

    Can you share a link to the site ?

    #1477082
    _blank

    Hello David,

    Link to shared blog, sidebar is on blog page and on posts.

    Cordially.

    #1477474
    Tom
    Lead Developer
    Lead Developer

    Give this a shot:

    @media(max-width: 1024px) and (min-width: 769px) {
        .site-content {
            flex-direction: column;
        }
    
        .site-content .content-area {
            width: 100%;
        }
    }
    #1477497
    _blank

    Hello Tom,

    Perfect ! Thanks Tom 🙂

    Cordially.

    #1477521
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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