Archived topic
Logo position
5 replies · Started by debbie on November 25, 2018
Hi, I managed to move the logo to the side, but I am struggling to get it above the title. Can you kindly help? This is my site:
https://www.intuitivesupportservices.com/
Hi there,
you could try this CSS for you logo / site branding layout:
@media (min-width: 769px) {
.inside-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.site-logo {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
.site-branding {
-webkit-box-flex: 1;
-ms-flex: 1 0 100%;
flex: 1 0 100%;
}
}
Thank you, that worked, however I forgot to say I wanted to centre it above the title. Is there something I need to add to do that? Many thanks
So this CSS:
.inside-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.site-logo {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}
Perfect thank you so very much
You're very welcome :)