Site logo

Archived topic

Insert Search Bar in the footer

8 replies · Started by Sara Genone on November 30, 2020

Viewing posts 1–9 of 9

Hi there,

add a search widget to the footer bar, once thats in place let me know and ill provide the CSS to set the layout.

Give this CSS a shot:
@media (min-width: 769px) {
    .inside-site-info .footer-bar {
        display: flex;
    }
}

Hi Leo
Thank you
but as you can see the layout is changed and is not correctlt aligned .
https://sviluppo.socialmela.it/sviluppo/
the search bar could be aligned to the right bottom side of the page?
Thank you
sara

Hi,

You can try modifying Leo's CSS a bit.

Try this:

aside#search-5 {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
}
@media (min-width: 769px){
.inside-site-info .footer-bar {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
}

thanks a lot :)
sara

c

No problem. :)

This archived topic is closed to new replies.