Archived topic
Centered Site Logo & Footer Widget immediately next to it?
3 replies · Started by Thomas on July 6, 2021
Hey all, wondering the best way to achieve this. I'd like to have my site-logo centered and then a little bit of margin after the logo followed the header. I've been trying to toy with GeneratePress' CSS but can't get it to do what I want. In the secret fields you can see what I have already, and also a image of what i'm trying to achieve (minus search bar stylings, haven't done that yet).
Thanks for any help!
Hi Thomas,
Give this CSS a try:
.header-widget form.woocommerce-product-search {
display: flex;
justify-content: flex-end;
.header-widget {
position: absolute;
right: 27px;
}
And change this CSS:
https://www.screencast.com/t/HY19PVT09
to:
.site-logo {
margin-left: auto;
margin-right: auto;
}
Let me know :)
Perfect! You're the best Ying!!
Thanks! You are welcome :)