Archived topic
Move widget header text over menu bar and align bottom menu bar
5 replies · Started by Paolo on June 1, 2021
Hi,
I need to move the widget header text (in my case "call and chat" text on right side of image) over the menu bar, and shift (align) bottom/right menu bar.
Here my example: https://drive.google.com/file/d/1Gia0Q5DImyQj6cVeIMULW50KrSaCw4vD/view
Thanks for your support!
Hi Paolo,
Give this CSS a try, if it doesn't work, could you link us to the site in question using the private info field?
.header-widget {
width: 100%;
order: -1;
text-align: right;
}
.inside-header.grid-container {
flex-wrap: wrap;
}
Let me know :)
Hi Ying, thanks for your support!
Your code make exactly what I want, but I need to have less space between the logo image and top screen (the logo image need to moved up).
Thank you very much.
Paolo
Hi there,
remove the CSS Ying provided and try this instead:
@media(min-width: 769px) {
.inside-header.grid-container {
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: auto auto;
}
.site-logo {
grid-column: 1;
grid-row: 1 / -1;
}
.header-widget {
grid-row: 1;
margin-right: 20px;
}
}
What can I say, more than perfect!
Thanks a lot!
Glad to be of help