I have centered the page titles that are right below nav menu by using the following CSS:
.main-title.entry-title {
text-align: center;
}
It works on all the pages except single posts in blog. How do I make it centered on blog posts?
Hey goforyourdreams!
Please add following code to Quick CSS as well
h2.post-title.entry-title {
text-align: center!important;
max-width: 100%!important;
}
Cheers!
Yigit
Hey!
Please add following code to Quick CSS as well
strong.main-title.entry-title {
display: block;
}
Cheers!
Yigit
Works perfect, thank you!