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
Hi guys,
I have text as a part of the slides images design, I didn't use the theme building Heading and Sub-Heading. In desktop view, no issues, but in mobile view, the placeholder of the headings is visible with a big white background.
Thank you,
allianceautoproducts.com
Solved! Go to the solution
This is an accepted solution.
Hi @Alliance
sorry it should be
.template-index .slideshow__text-wrap--mobile {
display: none!important;
}
Not
.template-index .slideshow .slideshow__text-wrap--mobile {
display: none!important;
}
Remove .slideshow
Hi @Alliance
@media(max-width: 749px){
.template-index .slideshow .slideshow__text-wrap--mobile {
display: none!important;
}
.template-index .slideshow .slideshow__btn {
display: inline-block!important;
min-height: inherit!important;
line-height: 1;
max-width: 39%;
margin-left: auto;
font-size: 2vw;
}
.template-index .slideshow__text-wrap--desktop .slideshow__text-content {
top: auto!important;
bottom: 8%!important;
transform: none!important;
}
}
Hi,
Got double buttons and white grid still there.
This is an accepted solution.
Hi @Alliance
sorry it should be
.template-index .slideshow__text-wrap--mobile {
display: none!important;
}
Not
.template-index .slideshow .slideshow__text-wrap--mobile {
display: none!important;
}
Remove .slideshow