Archived topic
Header widget
2 replies · Started by Harris on November 15, 2018
Viewing posts 1–3 of 3
Hello,
Any clue how I can make the header widget show next to the navigation and not above it?
Thanks
Harris
Ok. I managed it.
Just for the story it worked with:
/* Align header widget*/
.inside-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.header-widget {
float: none;
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
top: 0 !important;
margin-left: 15px;
}
.main-navigation {
float: none !important;
margin-left: auto;
margin-right: 15px;
}
Glad you found a solution!
This archived topic is closed to new replies.