Archived topic
How to make header widget shown below the logo
3 replies · Started by nutt on June 29, 2020
Viewing posts 1–4 of 4
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.

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;
}
}
Hi, David
Thank you so much for your help
You're welcome
This archived topic is closed to new replies.