Aligning header1 (site title) and tagline to left
-
I want to align the header, tagline and logo to the left. I’m not sure what the CSS is to move the logo next to the header as well, since it’s above the title and tagline. Anyone have the CSS code for this?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
This should do the trick:
/* Move logo next to site title, and align everything to the left */ .masthead { text-align: left; } .masthead .branding { padding-left: 20px; } a.site-logo-link { float: left; padding-right: 20px; }Let me know if you had something different in mind.
-
- The topic ‘Aligning header1 (site title) and tagline to left’ is closed to new replies.