[Resolved] How to make header widget shown below the logo

Home Forums Support [Resolved] How to make header widget shown below the logo

Home Forums Support How to make header widget shown below the logo

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1345133
    nutt

    Is it possible to change the position of header widget to be below logo in mobile view?

    it already works great on desktop -> https://nuttblog.com I just want to change in mobile view.

    header widget

    #1345259
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    @media (max-width: 768px) {
        .inside-header {
            display: flex;
            flex-direction: column-reverse;
        }
        .header-widget {
            margin-bottom: 0 !important;
            margin-top: 0.5em;
        }
    }
    #1345268
    nutt

    Hi, David

    Thank you so much for your help

    #1345306
    David
    Staff
    Customer Support

    You’re welcome

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