Can’t seem to find a way to center the Featured Product Heading on the home page, have tried most solutions listed here for other themes.
I am using the ‘Simple’ theme
Help is very much appreciated!
Can’t seem to find a way to center the Featured Product Heading on the home page, have tried most solutions listed here for other themes.
I am using the ‘Simple’ theme
Help is very much appreciated!
@Bevang1999 share your URL site and password if its needed, and i will help you ![]()
add this to your css file
#featured-products {
text-align: center;
}
Unfortunately I have tried this, and does not work
go to your featured-products file, then search for :
## Popular Products
left it like this,
## Popular Products
and then put the code i posted into your css file
I was unable to find anywhere in ‘featured-product.liquid’ or ‘featured-products.liquid’ that indicates popular products.
@Bevang1999 put here code from those two file, i will edit it
take your featured-products.liquid and go to:
{% if section.settings.title != blank %}
## {{ section.settings.title | escape }}
{% endif %}
remove it, and paste that code:
{% if section.settings.title != blank %}
## {{ section.settings.title | escape }}
{% endif %}
then, put css code:
#featured-products {
text-align: center;
}