Guest Posted July 17, 2019 Share Posted July 17, 2019 So I'm making a website that has a registration price table on desktop. This element hides on mobile in favor of a more mobile-friendly list. https://www.medicalspashow.com/register This is mostly working except in mobile view it's also hiding the testimonial and etc information below the pricing section. This is displaying correctly in the editor, but is not correct when I visit the site on Firefox, Chrome, or mobile. I'm using this CSS @media only screen and (max-width: 768px) { #block-yui31721156158549852313231 { display: none; } } @media only screen and (min-width: 769px) { #block-yui31721156158549852333748 { display: none; } } What am I doing wrong? Link to comment
tuanphan Posted July 17, 2019 Share Posted July 17, 2019 @ericskribbles First, remove @media only screen and (max-width: 768px) { #block-yui_3_17_2_1_1561585498523_13231 { display: none; } } Then, use @media only screen and (max-width:768px) { div#block-yui_3_17_2_1_1561585498523_13231>.sqs-block-content:first-child { display: none; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.