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
Hello,
My website is https://superluxemerch.com/pages/pricing. I have created a table that hides columns on mobile screen resolutions on this page. I have a scrolling text section instructs users to rotate their phone to view the full pricing grid but I only want this section to show at a screen size that makes sense. I don't want to display this scrolling text on the desktop resolution. Is there a coding solution that doesn't require a third-party application?
Solved! Go to the solution
This is an accepted solution.
go to your store > theme > customize > theme settings > custom css or theme base.css or your pricing css file if you have any
@media (min-width:768px) {
section#shopify-section-template--22060572180798__scrolling_text_Jdrhtj {
display: none !important;
}
}
it will only hide this section on desktop
This is an accepted solution.
go to your store > theme > customize > theme settings > custom css or theme base.css or your pricing css file if you have any
@media (min-width:768px) {
section#shopify-section-template--22060572180798__scrolling_text_Jdrhtj {
display: none !important;
}
}
it will only hide this section on desktop
Thank you!!! That worked like a charm. Well done!
That's awsome worked for me as well, what should I do if I want to hide it only on mobile?