[Support request] Site identity and header widget collapse order

Home Forums Support [Support request] Site identity and header widget collapse order

Home Forums Support Site identity and header widget collapse order

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #587781
    Ben

    Hi,

    I’m currently building out my WordPress website with Generatepress, however i’m having a little problem. My site identity and header widget collapse in the wrong order, and i’m wondering how to go about switching this.

    1

    2

    In the second image you can see that my header text widget is appearing above the site identity, i’d like to switch the order around so that my site identity is above the text widget. Any help is appreciated.

    #587796
    David
    Staff
    Customer Support

    Hi Ben, you can add this CSS to re-order them:

    @media (max-width: 768px) {
        .inside-header {
            display: flex;
            flex-direction: column;
        }
        .header-widget {
            order: 1;
            margin: 10px 0;
        }
    }

    https://docs.generatepress.com/article/adding-css/

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