Solved

Change colour and size of heading for customer reviews

peter550
Explorer
76 1 36

I am using this app for reviews https://apps.shopify.com/product-reviews

I want the heading to be aligned to the left and smaller and green, like the heading to the top right. 

I have attached an image showing where I have out the code. 

What code would i need to do this? 

site is https://laz-the-plant-scientist.myshopify.com/

P word test

Theme blockshop

Screenshot 2021-10-27 at 15.05.33.pngScreenshot 2021-10-27 at 15.05.40.png

Accepted Solution (1)
Zworthkey
Shopify Partner
5581 642 1569

This is an accepted solution.

@peter550 
Paste this code on top of the theme-critical.css file.

h2.spr-header-title {
    font-size: 34px !important;
    color: #575A17 !important;
}


Thank You.

View solution in original post

Replies 3 (3)

Zworthkey
Shopify Partner
5581 642 1569

Hii, @peter550 
Paste this code on top of the theme--async.css file.

h1.product-page--title {
    float: left !important;
    font-size: 30px !important;
    color: #575A17 !important;
}

Thank You.

peter550
Explorer
76 1 36

Hi @Zworthkey 

 

I want to change the highlighted text 'reviews' to this size and colour, not the product name 

highlighted part I want to changehighlighted part I want to change

Zworthkey
Shopify Partner
5581 642 1569

This is an accepted solution.

@peter550 
Paste this code on top of the theme-critical.css file.

h2.spr-header-title {
    font-size: 34px !important;
    color: #575A17 !important;
}


Thank You.