Archived topic
Header search Widget UNDER title/logo on mobile?
3 replies · Started by Greg on August 22, 2019
Hi,
Further to David's advice on this thread:
https://generatepress.com/forums/topic/header-widget-under-titlelogo-on-mobile/
We are opening a new thread and have supplied our URL to admins.
I tried the ordered CSS that Tom suggested here:
https://generatepress.com/forums/topic/header-widget-placement/#post-171295
but that resizes the search box and breaks the margins.
Please also consider this a +1 for implementing this as an option as outlined in the aforementioned thread, as it seems it never made it in to the theme.
Thank you, best wishes.
Hi there,
try this CSS:
@media(max-width: 768px) {
.inside-header {
display: flex;
flex-direction: column-reverse;
}
.header-widget {
margin-top: 20px;
margin-bottom: 0 !important;
}
}
That worked perfectly, thank you.
You're welcome