Archived topic
Change widget in the header places
5 replies · Started by Oleg on September 20, 2015
Viewing posts 1–6 of 6
Is it possible to display the widget below name site? That would be logical.

Give this CSS a try:
@media (max-width: 768px) {
.site-branding {
display: table-header-group;
}
.header-widget {
display: table-footer-group;
}
}
Please, it is necessary to align the center:

Change it to this:
@media (max-width: 768px) {
.inside-header {
display: table;
}
.site-branding {
display: table-header-group;
}
.header-widget {
display: table-footer-group;
}
}
Thank you!
You're welcome :)
This archived topic is closed to new replies.