LOOKING TO CENTER COLLECTION HEADERS AND PAGE HEADERS - I TRIED A FEW DIFFERENT CODES BUT NOTHINGS WORKING
THANK YOU!
LOOKING TO CENTER COLLECTION HEADERS AND PAGE HEADERS - I TRIED A FEW DIFFERENT CODES BUT NOTHINGS WORKING
THANK YOU!
Hi, please go to edit code, assets,component-collection-hero.css file and add this snippet code. If this code didn’t work then add text-align: center !important;
.collection-hero__title {
text-align: center;
}
It didnt work on mobile
Hope you sorted it as I visited your website and on mobile it’s centered.
Hi Yes I did ! thank you.
Any chance you could help me with centering page titles? Like for example in my footer menu I have all the policies, about us, contact us etc. but I need to center the title on those pages
Could you please share screenshot of which titles you want to be centered?
add this code snippet to your section-main-page.css
.main-page-title{
text-align center;
@media screen and (min-width: 750px){
text-align:center;
}
}
It worked! thank you
Oh wait, it only worked for the policies but not the pages I created like contact us, about us etc
Remove media query from aboe and add it separate like this please
@media screen and (min-width: 750px){
.main-page-title{
text-align:center;
}
}
didn’t work
Please add both
Just like this
.main-page-title{
text-align:center;
}
@media screen and (min-width: 750px){
.main-page-title{
text-align:center;
}
}
it worked!! thank you so much.