How to change background of app embed section? - Dawn Theme

Solved

How to change background of app embed section? - Dawn Theme

BraxtonEcom
Explorer
90 0 18

On the app embed section (loox reviews) of the product page, on desktop view, it still shows an area of white (as shown below). I would like the white area to be #FAFAFA.

 

Any advice is really appreciated

 

https://www.soundshield.co.uk/products/sound-shield

Dawn Theme

 

BraxtonEcom_0-1715855416940.png

 

Braxton
Accepted Solution (1)

Anshul_arora
Navigator
453 129 105

This is an accepted solution.

Hello @BraxtonEcom ,

I understand you are looking to provide one background color to your review section in Product Detail Page.

Please add the below mentioned CSS code at the bottom of theme.liquid file before </body> tag and save.

 

<style>

section#shopify-section-template--16949692235942__17157791483ca8d869 {
background: #FAFAFA !important;
}

</style>

 



Output will be like this -> https://prnt.sc/uQJZuOvE_nE4

Anshul_arora_0-1715858196275.png

 

I hope the code helps you.

Please share if you have any queries.

Thank you.

Please remember to like and accept the solution to help other store owners.

For Shopify Design & Development | Custom Coding -Visit Here

View solution in original post

Replies 3 (3)

Guleria
Shopify Partner
4091 801 1154

Hello @BraxtonEcom ,

 

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

 #shopify-section-template--16949692235942__17157791483ca8d869 {
    background-color: #FAFAFA;
}

 

Thanks

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

abdulmoeed37
Shopify Partner
120 12 13

Hi, please go to your theme customizer and edit this app embed section and in the custom CSS box add the following:

.section {

background: #FAFAFA;

}

Helping shopify store owners.
Schedule free meeting for shopify store related problems:
If you need assistance with your store, feel free to contact me at abdulmoeed37@gmail.com
If my assistance was helpful, please consider liking and accepting the solution. Thank you!

Anshul_arora
Navigator
453 129 105

This is an accepted solution.

Hello @BraxtonEcom ,

I understand you are looking to provide one background color to your review section in Product Detail Page.

Please add the below mentioned CSS code at the bottom of theme.liquid file before </body> tag and save.

 

<style>

section#shopify-section-template--16949692235942__17157791483ca8d869 {
background: #FAFAFA !important;
}

</style>

 



Output will be like this -> https://prnt.sc/uQJZuOvE_nE4

Anshul_arora_0-1715858196275.png

 

I hope the code helps you.

Please share if you have any queries.

Thank you.

Please remember to like and accept the solution to help other store owners.

For Shopify Design & Development | Custom Coding -Visit Here