slideshow (mobile): change font color of heading Refresh Theme

Hello everybody,
I would like just to change the font colour in the slidehow title section for mobile only. how can I do it?

Thanks in advance

1 Like

Hi @Juanchila0

Can you share with me the store link to check further on it?

Thank you.

Hi @Juanchila0

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.slideshow__text.banner__box h2.banner__heading.h1 {
    color: red;
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hi I tried in the Base.css but it didn’t work.

Here is the URL https://www.purasmile.it/

www.purasmile.it

Thanks for the info, but It’s password protected.

Yes, you can check now.

Thanks

Hi @Juanchila0

You can change the title color of the slideshow by following this instruction:

  1. Go to Shopify > Theme > Customize > open Custom CSS

  2. Copy and paste this code to the section > Save. You can change the color as required.

@media (max-width: 768px) {
.banner__box>*:first-child {
    margin-top: 0;
    color: #97abab;
}

Here is the results:

1 Like

Thanks @LizHoang it works now,

Just to ask you why the codes I enter in the Base.css file are not working?