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
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
Hi @Juanchila0
Try this one.
@media only screen and (max-width: 749px){
.slideshow__text.banner__box h2.banner__heading.h1 {
color: red;
}
}
And Save.
Result:
If this wont work, please share your store URL. And you can change the color of your reference.
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/
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:
Go to Shopify > Theme > Customize > open Custom CSS
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:
Thanks @LizHoang it works now,
Just to ask you why the codes I enter in the Base.css file are not working?