Shopify themes, liquid, logos, and UX
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
I have figured out how to change size, position but cannot figure out how to change the opacity of Subheading text to be solid color.. I prefer not to have any opacity at all on any of my subheadings. Right now I am running custom CSS in the section for font size with this code:
}
.banner__text.rte {
font-size: 20px;
}
Solved! Go to the solution
This is an accepted solution.
Add this code to Custom CSS of desktop image banner section
.banner__text p {
color: #000;
}
And this code for mobile banner image section
.banner__text p {
color: #fff;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Thanks Dan. Worked for desktop block but for Mobile I had to use:
.slideshow__text-mobile--left p {
color: #fff;
}
@media (min-width: 768px) {
slideshow-component {
display: none;
}
}
Hi @Ryanp
I'm Dan from Ryviu: Product Reviews & QA.
Could you share your store URL to check?
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hey Dan - thanks for offering to help. It's the slideshow above the footer. Devildaves.com. I'm also hiding for Desktop and Mobile with custom CSS. So I might need codes for both. Section wise..
This is an accepted solution.
Add this code to Custom CSS of desktop image banner section
.banner__text p {
color: #000;
}
And this code for mobile banner image section
.banner__text p {
color: #fff;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Thanks Dan. Worked for desktop block but for Mobile I had to use:
.slideshow__text-mobile--left p {
color: #fff;
}
@media (min-width: 768px) {
slideshow-component {
display: none;
}
}