How can I change the placement of the title on my pages? For example, on the terms and conditions page https://charmeglobal.com/pages/terms-and-conditions I want the top title in all caps to be centered.
You can try follow this path:
Themes => edit code => asset => section-main-page.css
and add this code to bottom of the file section-main-page.css
.main-page-title {
text-align: center;
}
Hello @tristanguzon
Try this code: it will be helpful to you -
Go to the online settings>Theme>Edit Code>Assets>base.css>Add code in this file.
h1.main-page-title.page-title.h0 {
text-align: center !important;
}
Perfect thank you ![]()