abbydowning Posted January 13, 2021 Posted January 13, 2021 Site URL: http://www.polymerventures.com/home-1 I would like to do the following with the caption overlays - site wide. keep the background white move captions to the top of the image blocks make the text black decrease the padding I found all of the details in the inspector but I can't figure out the code to change them. Current code used: /* Image Captions on Hover*/ .image-caption-wrapper { min-height: 5%x; display: flex; justify-content: center; /*text align center*/ background: white!important; /* Background Overlay*/ }
paul2009 Posted January 13, 2021 Posted January 13, 2021 1 hour ago, abbydowning said: I would like to do the following with the caption overlays - site wide. keep the background white move captions to the top of the image blocks make the text black decrease the padding You can do this with the following CSS, added to Design > Custom CSS. The padding is shown as the current value (18px). You can adjust this to reduce the padding around the titles. /* Captions on top, reduce padding */ .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay .image-caption-wrapper, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption-wrapper { top:0; bottom: auto; padding: 18px; } /* Black captions */ .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay .image-caption-wrapper h1, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption-wrapper h1, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay .image-caption-wrapper h2, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption-wrapper h2, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay .image-caption-wrapper h3, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption-wrapper h3, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay .image-caption-wrapper strong, .sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption-wrapper strong { color: #000; } Effect of CSS when applied Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.
abbydowning Posted January 14, 2021 Author Posted January 14, 2021 Thank you SO much! Glad to know about your business.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.