@eminonce said:
Looking for a way to remove the 1px space between photos in the carousel.
Welcome to Dgrin!
You'll need some custom CSS. This worked with a little test on my site. It will remove all spaces on all carousel blocks that can "see" that piece of CSS. (So put it in a CSS block at the "Entire Site" level to affect all carousel blocks everywhere.)
.sm-component-carousel-image-list > div {
margin-right:0px !important;
}
Comments
Welcome to Dgrin!
You'll need some custom CSS. This worked with a little test on my site. It will remove all spaces on all carousel blocks that can "see" that piece of CSS. (So put it in a CSS block at the "Entire Site" level to affect all carousel blocks everywhere.)