Hello Sharon,
Did you add a logo to your site or decide to go another route with the header?
Thread Starter
Sharon
(@prettybiddy)
Hi Melissa – thanks for responding – I just put it back – I know there is a fairly simple trick for putting the logo inline with the title & tagline in the CSS, I just don’t know exactly what it is.
http://willowtreeantiquesandgifts.com/
Hi Sharon,
After looking at it, I don’t think it’s going to work on one line without hardcoding your logo and site title into the header file.
A work around would be to create an image that contains both the logo and site title — using the fonts you’ve selected for the theme.
This in Custom CSS will do just that, it works only in the same settings (logo size and everything).
@media screen and (min-width: 800px) {
.site-branding {
max-width: 720px;
}
.custom-logo {
float: left;
margin-right: 20px;
}
.site-title {
clear: right;
float: left;
position: relative;
top: 8px;
}
.site-description {
float: left;
position: relative;
top: 5px;
}
}
Thread Starter
Sharon
(@prettybiddy)
Paul – THANK YOU. That totally worked. You are a gentleman and a scholar.