How can I center the Featured Product Heading on only the Home Page? Simple Theme

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 :slightly_smiling_face:

https://www.vapeandconz.co.nz/password

rtiest

thank 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

featured-product.liquid

pastebin.com/RLJLR9EW

featured-products.liquid

pastebin.com/RpaneiZQ

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;
}