Possible to move site logo?
- The topic ‘Possible to move site logo?’ is closed to new replies.
Need help? Check out our Support site, then
Hi Ricardo,
Is it possible to move the site logo above the menu bar?
The blog I need help with is: (visible only to logged in users)
Hello there,
yes, you can add this CSS:
#page {
display: flex;
flex-direction: column;
}
.image-header {
order: -1;
}
Additionally, you can add this CSS to change the background behind the logo to black:
.image-header {
background-color: #000;
margin: 0;
}
Hope this helps :)
Ricardo
Thank you Ricardo, you are the best!
Nice!! You are welcome :)