Archived topic
Header Widget centered
3 replies · Started by Stefan on November 1, 2020
Viewing posts 1–4 of 4
Hello,
on my website http://www.digitalewelt.at i have the problem that the widget menu in the header is not centered in height.
So the text is at the top of the logo, from the height.
Can you tell me what I have set wrong here.
Hi there,
GP 3.0 should automatically align them if you set the Customizer > General > Structure to Flexbox.
If you don't to switch to flexbox then you can add this CSS:
@media(min-width: 769px) {
.inside-header {
display: flex;
flex-direction: row-reverse;
}
.header-widget {
align-self: center;
margin-left: auto;
}
}
It worked with the Flexbox setting.
Glad to hear that
This archived topic is closed to new replies.