SelwynGoodman Posted September 19, 2022 Share Posted September 19, 2022 Site URL: https://selwyngoodman.co How can I have my portfolio pages as 1 column instead of two, is their any way I can do this, possibly with a custom code? Thank you! Link to comment
Beyondspace Posted September 19, 2022 Share Posted September 19, 2022 1 hour ago, SelwynGoodman said: Site URL: https://selwyngoodman.co How can I have my portfolio pages as 1 column instead of two, is their any way I can do this, possibly with a custom code? Thank you! You can try adding to Home > Design > Custom Css section[data-section-id="62c898ddbdd30f1f03477514"] .portfolio-grid-overlay { grid-template-columns: 1fr; } Support me by pressing 👍 if this useful for you BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
SelwynGoodman Posted September 19, 2022 Author Share Posted September 19, 2022 Thank you it worked! is there a version of this for the simple grid instead of overlay grid? Link to comment
SelwynGoodman Posted September 19, 2022 Author Share Posted September 19, 2022 I would much prefer that because the hoover doesn't work properly on mobile, Thank you Link to comment
Beyondspace Posted September 19, 2022 Share Posted September 19, 2022 You can use the following code to set style only for desktop @media only screen and (min-width: 768px) { section[data-section-id="62c898ddbdd30f1f03477514"] .portfolio-grid-overlay { grid-template-columns: 1fr; } } BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
Beyondspace Posted September 20, 2022 Share Posted September 20, 2022 (edited) Using the following code to apply for the grid: simple layout /*1 column for portfolio grid simple layout*/ section[data-section-id="62c898ddbdd30f1f03477514"] .portfolio-grid-basic.grid-wrapper { grid-template-columns: 1fr; } /*left align for the portfolio text on grid simple layout with mobile display*/ @media only screen and (max-width: 767px) { section[data-section-id="62c898ddbdd30f1f03477514"] .portfolio-grid-basic.grid-wrapper .portfolio-text { text-align: left; } } Support me by pressing 👍 if this useful for you Edited September 20, 2022 by bangank36 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! 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