Site logo

[Support request] how to make right sidebar after my content on mobile?

Home Forums Support [Support request] how to make right sidebar after my content on mobile?

Home Forums Support how to make right sidebar after my content on mobile?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2411884
    eran

    Hi,
    How can I make the right sidebar after my content on mobile? (like its on mobile)?

    #2412351
    David
    Staff
    Customer Support

    Hi there,

    i am sorry – can you explain a little more – as currently the Sidebar is displayed after the content on mobile.

    #2412820
    eran

    I meant in tablet.
    My bad.

    #2412834
    David
    Staff
    Customer Support

    Try adding this CSS:

    
    @media(max-width: 1024px) {
        #content {
            display: block !important;
        }
        #content :is(.content-area, .widget-area) {
            width: 100%;
        }
    }
    #2412852
    eran

    It worked, but now it’s 100% width and not looking good.
    Plus, the margin on the sides are disappeared.

    #2412861
    David
    Staff
    Customer Support

    Change to:

    
    @media(max-width: 1215px) {
        #content {
            display: block !important;
        }
        #content :is(.content-area, .widget-area) {
            width: 100%;
        }
        #content .widget-area {
            padding: 0 20px;
        }
    }

    The last rule includes some padding for the sidebar.

    #2412873
    eran

    Thanks!

    #2412876
    David
    Staff
    Customer Support

    You’re welcome

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