All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Everytime I change the menu colour, it changes the colour of the text in slideshow, I want to be able to separate the two and not have one affect the other.
Solved! Go to the solution
This is an accepted solution.
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.slideshow__text.banner__box.content-container.content-container--full-width-mobile h2 {
color: #fff !important;
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @lisanchem
would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.
This is an accepted solution.
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.slideshow__text.banner__box.content-container.content-container--full-width-mobile h2 {
color: #fff !important;
}
</style>
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Thank you, that worked.
Hi @lisanchem
Would you mind to share your Store URL website? with password if its unpublish. Thanks!
Thanks for the info, check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
/* Banner heading color */
h2.banner__heading.inline-richtext {
color: #fff;
}
And Save.
Result:
Note: CHange the color you like.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!