Change the color of the text on Hero Slide show in Impulse Theme

Hello, I’m trying to make the text inside the Hero slideshow black rather than white (or any color of my choice) on my website www.lothaire.fr, using the Impulse theme.

Can anyone help ?

Hi @LothaireBordeau ,

You can add the below css code in custom.css

Online Store > Themes > Actions > Edit Code > Custom.css

.hero__title { color: black; }

Can you please tell me in which part of the code I’m supposed to insert that snippet ?

@LothaireBordeau
Follow below steps

  • Step 1: Go to your Themes page. Navigate to Online Store > Themes. …
  • Step 2: Click Edit code. In the Actions dropdown menu, click on Edit code to get to the code editor.
  • Step 3: Find the Assets folder for CSS files and edit the theme.css file.
    Add the below style to the theme.css file at the end
.hero__title { color: black; }
1 Like

Thank you very much ! That solved it !