Jessummers Posted November 4, 2020 Share Posted November 4, 2020 Site URL: https://alligator-sturgeon-y82z.squarespace.com/?password=Password Hi there. Two questions. In the about section of the website I've built - I'd the blue piece behind the image to be responsive. Right now I have an image with a transparent background [that for some reason has colour behind it]. The lower services section, I want it to have the image and then the text block to be a different background colour than the section background colour. Looking for tutorials and guidance. https://alligator-sturgeon-y82z.squarespace.com/?password=Password Link to comment
Beyondspace Posted November 4, 2020 Share Posted November 4, 2020 1. about section image, the blue piece is part of the image so it scale when resize, is it not good enough? 2. About the card, you can get the card id by Find Squarespace Ids extension Then modify the css of them accordingly on Custom Css #block-f9c1cd8f76bfb8d5e730, #block-99a2c655592eec615cf6, #block-ef0f91e81c84046231b5 { background: #51344d; } Jessummers 1 Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio pluginIf you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you Link to comment
Jessummers Posted November 4, 2020 Author Share Posted November 4, 2020 4 minutes ago, bangank36 said: 1. about section image, the blue piece is part of the image so it scale when resize, is it not good enough? 2. About the card, you can get the card id by Find Squarespace Ids extension Then modify the css of them accordingly on Custom Css #block-f9c1cd8f76bfb8d5e730, #block-99a2c655592eec615cf6, #block-ef0f91e81c84046231b5 { background: #51344d; } Thank you! How can I make it so there is white space between each column/image. Beyondspace 1 Link to comment
Beyondspace Posted November 4, 2020 Share Posted November 4, 2020 2 minutes ago, Jessummers said: Thank you! How can I make it so there is white space between each column/image. Little margin will helps #block-f9c1cd8f76bfb8d5e730, #block-99a2c655592eec615cf6, #block-ef0f91e81c84046231b5 { background: #51344d; margin: 10px; } Jessummers 1 Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio pluginIf you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you Link to comment
Jessummers Posted November 4, 2020 Author Share Posted November 4, 2020 (edited) 28 minutes ago, bangank36 said: Little margin will helps #block-f9c1cd8f76bfb8d5e730, #block-99a2c655592eec615cf6, #block-ef0f91e81c84046231b5 { background: #51344d; margin: 10px; } Figured it out height: 600px; Edited November 4, 2020 by Jessummers Link to comment
Jessummers Posted November 4, 2020 Author Share Posted November 4, 2020 36 minutes ago, bangank36 said: 1. about section image, the blue piece is part of the image so it scale when resize, is it not good enough? 2. About the card, you can get the card id by Find Squarespace Ids extension Then modify the css of them accordingly on Custom Css #block-f9c1cd8f76bfb8d5e730, #block-99a2c655592eec615cf6, #block-ef0f91e81c84046231b5 { background: #51344d; } Do you know how I can add that blue background behind the image using CSS. Link to comment
Beyondspace Posted November 4, 2020 Share Posted November 4, 2020 7 minutes ago, Jessummers said: Do you know how I can add that blue background behind the image using CSS. You will need 2 step: 1. Remove the color box from the image, leave a transparent space where they were, modified image attached Untitleddesign.png (500×750) (beyondspace.tk) 2. Use this code #block-4cadebaad29294b6b1cb.sqs-block-image .image-block-outer-wrapper.image-block-v2 .image-overlay { background-color: #0d2e41; z-index: -1; width: 90%; height: 85%; top: 10%; } Jessummers 1 Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio pluginIf you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you Link to comment
Jessummers Posted November 4, 2020 Author Share Posted November 4, 2020 45 minutes ago, bangank36 said: You will need 2 step: 1. Remove the color box from the image, leave a transparent space where they were, modified image attached Untitleddesign.png (500×750) (beyondspace.tk) 2. Use this code #block-4cadebaad29294b6b1cb.sqs-block-image .image-block-outer-wrapper.image-block-v2 .image-overlay { background-color: #0d2e41; z-index: -1; width: 90%; height: 85%; top: 10%; } Amazing. The only issue is that the colour does not show properly. Link to comment
Beyondspace Posted November 4, 2020 Share Posted November 4, 2020 7 minutes ago, Jessummers said: Amazing. The only issue is that the colour does not show properly. Sorry!, i missed the opacity value #block-4cadebaad29294b6b1cb.sqs-block-image .image-block-outer-wrapper.image-block-v2 .image-overlay { background-color: #0d2e41; z-index: -1; width: 90%; height: 85%; top: 10%; opacity: 1; } Jessummers 1 Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio pluginIf you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you Link to comment
Jessummers Posted November 4, 2020 Author Share Posted November 4, 2020 5 minutes ago, bangank36 said: Sorry!, i missed the opacity value #block-4cadebaad29294b6b1cb.sqs-block-image .image-block-outer-wrapper.image-block-v2 .image-overlay { background-color: #0d2e41; z-index: -1; width: 90%; height: 85%; top: 10%; opacity: 1; } amazing! thank you. Beyondspace 1 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