ChrisStallings Posted November 8, 2023 Share Posted November 8, 2023 I created a vertical line to use as a divider on a website I am building. The only way I could do it was with custom css and html. However it doesn't work for the mobile version of the website. Is there a way to hide this block of code for the mobile site? Thanks in advance. I can provide my source code if that helps.Β Link to comment
melody495 Posted November 8, 2023 Share Posted November 8, 2023 Hi, can't check without a link to your website or more details, but try the below. This will not show the selected element. You will need to replace with your block selector. @media only screen and (max-width:640px) { your_line_block_reference { display: none!important; } } Β -------- >Β πΒ <----------Β Please quote or @ meΒ when replying, or I won't get a notificationΒ Melody | Squarespace Nerd π»Β πββοΈΒ 1-2-1 Squarespace Training sessionΒ <- feeling stuck and want to learn? π©βπ»Β πββοΈΒ Website helpΒ <- send me your to-do list. From code to plugin to domain setup. π§°Β See the tools I use (contain affiliate links) βΒ Did I help?Β I like coffeeΒ (Thank you) Link to comment
Protoregimoto Posted July 11 Share Posted July 11 Hi, I'm having a similar problem to the above. Am using a vertical line in my design and it's horrible on mobile. Also, I can't get my section headers to stack properly. You'll notice the "what I did" header should be above the bullets, not the body copy. Any assistance is appreciated. Thanks! https://www.regijacob.com/work/tapster Link to comment
sorca_marian Posted July 11 Share Posted July 11 @ProtoregimotoΒ for the line to be hidden on mobile, you can add the below CSS code on that page <style> @media (max-width: 640px) { .vertical-line { display : none; } } </style> Β Β π¨βπ§π¨βπ»Β Squarespace plugins πββοΈΒ Squarespace Custom Web Development & Design π Β Notion alternative πΉΒ Squarespace Tutorials for free - YouTubeπΉΒ π―π I have worked on over 200 Squarespace sites with custom code for over 9 years πββοΈΒ Let's connect on LinkedIn Β Link to comment
Protoregimoto Posted July 11 Share Posted July 11 (edited) That worked! Thank you! Edited July 13 by Protoregimoto Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment