Hello all,
I was wondering if it was possible to change the background colour on my testimonials section in DEBUT.
I want to change the background color on my testimonials section from white (#ffffff) to light grey (#f3f3f3)
Other posts suggest - Online Store->Theme->Edit code->Assets->theme.scss.liquid HOWEVER my site only has theme.ccs,I do not have theme.scss.liquid option.
Could anyone please help.
Reggie
1 Like
Hi Reggie,
I believe that you mean ‘theme.css’, not ‘theme.ccs’, correct?
Changing the background color of the testimonials section is definitely possible.
Don’t worry about scss or css extension - applying a plain CSS code to any of them should work as expected - in other words, applying the code (assuming that its correct) to the ‘theme.css’ should work as expected
CSS - plain stylization
SCSS - stylization that accepts variables
Cheers!
Gabriel
Hey GabrielS
Thanks for the reply, I am not very good at this whole coding thing.
In my code there is no option for theme.scss.liquid (I dont have the liquid wording).
I believe the code could be
- .main-content #shopify-section-1600081807188 {
background: #f3f3f3;
padding: 30px 0;
display: block;
overflow: hidden;
}
Does this sound right?
Thanks for helping
It’s possible that your theme has custom code and lacks of ‘.liquid’ extension.
As I haven’t seen your current website code yet and assuming that the ‘shopify-section-1600081807188’ is the correct element, the below CSS code should be working as expected.
.main-content #shopify-section-1600081807188 {
background: #f3f3f3 !important
}
@ReggieBaby
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! 
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.