change background color Impact

YuriyDobosh
Tourist
11 0 2

Hi!

Help me please, i need to change the background to #141212 to the following sections:
link https://eviqo.io/, password EVIQOSTART2023

1. On the main page section Hot spots

YuriyDobosh_0-1699905745920.png

and Featured product 

YuriyDobosh_1-1699905794924.png

 

2. On the become-eviqo-ambassador page section Image with text

YuriyDobosh_2-1699905900598.png

 

Replies 6 (6)
Spac-es
Shopify Partner
155 35 51

Captura de pantalla 2023-11-15 010145.png

 

Captura de pantalla 2023-11-15 010513.png

 

Add the following code to the sections you want:

 

style="background-color: #141212;"

 

By the way, you have an excellent web design!

YuriyDobosh
Tourist
11 0 2

Help me please, I can't find where to put it in the code. I don't see such lines

Spac-es
Shopify Partner
155 35 51

add this code (theme.css):

@media screen and (min-width: 1000px) {
  #shopify-section-template--21344832946489__hot-spots,
  #shopify-section-template--21344832946489__featured-product {
    background-color: #141212;
  }
}

 Accept the previous answer as a solution as well, it helps me a lot, thank you!

Spac-es
Shopify Partner
155 35 51

Captura de pantalla 2023-11-15 120437.png

 

@media screen and (min-width: 1000px) {
  #shopify-section-template--21344832946489__hot-spots,
  #shopify-section-template--21344832946489__featured-product,
  #shopify-section-template--21544541094201__a2b2ae54-e295-4dd1-94ae-e5fd92e66007 {
    background-color: #141212;
  }
}

You can also add the background color to this section! 😎✌️

YuriyDobosh
Tourist
11 0 2

it workssss!!! thank you so much!

can you please also help me with this one? i need to make it black, not white
https://eviqo.io/pages/become-eviqo-ambassador

YuriyDobosh_0-1700046793153.png

 

Spac-es
Shopify Partner
155 35 51

I'm glad you liked it! Mark it as a solution!

 

To add that background color to that section also add the following code:

@media screen and (min-width: 1000px) {
  #shopify-section-template--21344832946489__hot-spots,
  #shopify-section-template--21344832946489__featured-product,
  #shopify-section-template--21544541094201__a2b2ae54-e295-4dd1-94ae-e5fd92e66007,
  #shopify-section-template--21544541094201__a3fa5a0e-04ff-4e34-916c-29de2607ecbd {
    background-color: #141212;
  }
}