Align Title
The topic ‘Align Title’ is closed to new replies.
Need help? Check out our Support site, then
Hello,
I’d like to make the title of the website (that goes over the header image) align to the left, rather than the center as it does automatically. Is there a way for me to do this? Thank you so much!
The blog I need help with is: lucialin.com
You can achieve this using a bit of custom CSS. I’ve provided a small CSS snippet below to help get you started.
.entry-header {
text-align: left;
}
Thanks so much for your response! Unfortunately this doesn’t seem to have the effect I was looking for. I’d like to move over the site title (which overlays the header image and is customized in the site identity tab). It doesn’t look like the entry-header effects this, is there one that would? Thanks again!!
I understand now. You can try giving the following CSS a shot and see if that works better for you.
.site-identity {
align-items: flex-start !important;
}
The topic ‘Align Title’ is closed to new replies.