How i can make the page title text in the center of the page only on specific pages?
https://www.tridentproducts.co.uk/pages/deal-town-rangers-fc
How i can make the page title text in the center of the page only on specific pages?
https://www.tridentproducts.co.uk/pages/deal-town-rangers-fc
Hi @hamzaabbas
Thanks for your questions, to resolve the query, you can follow the instruction here:
Go to Shopify > Theme > Customize > Custom CSS : https://prnt.sc/Voua7Py76UCg
Copy the code below and paste to the Custom CSS section > save
.main-page-title {
text-align: center !important;
}
I hope it helps
Avada team - Hana
base.css
.main-page-title{
text-align:center;
}
Thank you for your response. I only want for few pages not on whole website pages.
Place that in pages where to place → scroll down to custom liquid → paste the code
Hi @hamzaabbas
Can you share with me these pages? I will provide you with solutions on it
Yes, on this page
Hi @hamzaabbas ,
You can follow the instruction here:
Go to Shopify > Theme > Edit code > theme.liquid file
copy and paste this code before the tag: https://prnt.sc/FbXi5VLql_lx
{% if page.id == 120651415818 %}
{% style %}
.main-page-title {
text-align: center !important;
}
{% endstyle %}
{% endif %}
Yes, it is working. Thank you