[Resolved] Increase Size Of The Header Widget

Home Forums Support [Resolved] Increase Size Of The Header Widget

Home Forums Support Increase Size Of The Header Widget

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #222556
    Eugen

    Hi,

    I’m using the header widget to display things like banners and social buttons. Unfortunately only 2 widgets can fit in the row the third one displays under the other 2. I want my widgets go until next to the logo. There is too much empty space in the header. i used the code to make the widgets inline already but I want the widgets go until next to the logo.

    thank you
    Eugen

    #222619
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try this CSS:

    .header-widget {
        max-width: 75%;
    }

    Adjust as needed ๐Ÿ™‚

    #222809
    nutt

    what about how to disable header widget when it comes to Mobile view or tablet view?

    Thank you

    #222815
    Tom
    Lead Developer
    Lead Developer

    Use media queries:

    @media (max-width: 768px) {
        .header-widget {
            display: none;
        }
    }
    #222847
    nutt

    Thank you sooooo much

    #222848
    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.