Hi team Ive trying to hide or remove this title on Mobile view only. Thanks in advance.
Video attached
Hi team Ive trying to hide or remove this title on Mobile view only. Thanks in advance.
Video attached
Hello,
@media only screen and (max-width: 480px){
.banner__heading.h0 {
display: none;
}
}
Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
Like This
Hello @StephenPozo
Please share your website URL.
Hello @StephenPozo
It’s GemPages support team and glad to support you today.
To provide you with the most precise solution in this case, could you please share the home page link?
@StephenPozo
add below css into base.css file(online store->themes->asset->base.css)
@media screen and (max-width: 425px){
h2.banner__heading.h0 {
display: none !important;
}
}
Thanks a lot! all of you.