Archived topic
Logo next to site title and tagline
3 replies · Started by Marie on December 30, 2018
Hello,
I am trying to add my logo on the left side of the site title and tagline, but I don't see that there is that option. I positioned the tagline under the site title. Could you please help me to add the logo on the left site right next to site title and tagline?
Thank you,
Marie
Hi there,
add your logo and try this CSS:
.site-logo {
float: left !important;
}
Hi David,
It worked well, thank you! Just in a mobile view it doesn't work. Could you please help me to do the same in mobile view?
Thank you,
Marie
Try this:
@media (max-width: 420px) {
.inside-header .site-branding {
width: 70%;
text-align: left;
}
}