Pollard Posted November 14, 2022 Share Posted November 14, 2022 Site password: New Trying to get the buttons in two columns on mobile version and not stacked. Is there any custom CSS that can help with this? https://www.westcountrywineshop.co.uk Thank you in advance!! Link to comment
joseph81 Posted November 14, 2022 Share Posted November 14, 2022 @media (max-width: 640px) { .sqs-layout .sqs-col-12 [class*=sqs-col] { float: left !important; width: 50% !important; } } This is one approach to achieve what you want. adifederico 1 Jozsef Kerekes - Front-end developer and Squarespace enthusiast My Blog: https://ui-workarounds.comIf you like my answer, please give me an upvote/like. Highly appreciated. Link to comment
adifederico Posted November 14, 2022 Share Posted November 14, 2022 This method also worked for me. @media screen and (max-width: 640px){ .sqs-layout [class*="sqs-col"] { float: left !important; } .col.sqs-col-3.span-3 { width: 47% !important; } } 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