Ramblings 0 Posted November 6 The available tweaks do not offer any option to create space between images. Instead, the only option is to have all images touching one another, which causes a strange look when images are of different shades of the same color. Is there any way to create spaces between these images? Thank you for any and all help! Share this post Link to post
MagneM 21 Posted November 6 Hi @Ramblings Paste this in Design > Custom CSS: .collection-type-gallery .sqs-active-slide img { border-left: 20px solid; border-right: 20px solid; border-color: #ffffff !important; } Magne Share this post Link to post
MagneM 21 Posted November 7 @Ramblings If you don't want space to the left of the first image and to the right of the last image in the gallery, you can add this: .slide:first-child img { border-left: none !important; } .slide:last-child img { border-right: none !important; } Magne Share this post Link to post