Site logo

Archived topic

Switching to Flexbox

7 replies · Started by Matthew on November 10, 2021

Viewing posts 1–8 of 8

I am trying to switch from Floats to Flexbox for some reason when switching the search box widget in the header goes behind the secondary navigation.

See screenshot here:
Issue

Looks like that image didn't work see here:
Issue

I accidentally saved this and now the option to revert back is gone? 😭

Hi there,

can you share a link to the site - so i can help fix that.
Where should the search box be positioned ?

Hey

It should look like this:

Correct

The site URL is au.wowfreebies.com

Thanks! :)

Remove this CSS:

@media(min-width: 769px) {
    .header-widget {
        position: absolute;
        right: 40px;
        bottom: 2em;
    }
}

and add this:

@media(min-width: 769px) {
    .inside-header {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header-widget {
        margin-top: -30px;
    }
}

Perfect thank you! :)

Glad to be of help!

This archived topic is closed to new replies.