Shopify themes, liquid, logos, and UX
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?
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025