Site logo

[Resolved] Change widget in the header places

Home Forums Support [Resolved] Change widget in the header places

Home Forums Support Change widget in the header places

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #138359
    Oleg

    Is it possible to display the widget below name site? That would be logical.
    Screen

    #138380
    Tom
    Lead Developer
    Lead Developer

    Give this CSS a try:

    @media (max-width: 768px) {
        .site-branding {
          display: table-header-group;
        }
        .header-widget {
          display: table-footer-group;
        }
    }
    #138430
    Oleg

    Please, it is necessary to align the center:

    Screen

    #138521
    Tom
    Lead Developer
    Lead Developer

    Change it to this:

    @media (max-width: 768px) {
        .inside-header {
            display: table;
        }
        .site-branding {
            display: table-header-group;
        }
        .header-widget {
            display: table-footer-group;
        }
    }
    #138579
    Oleg

    Thank you!

    #138651
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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