Jeff Dowell
Jeff Dowell

Reputation: 125

How can I remove the left and right space from first & last images?

My site has a slideshow with white space in between all images; however, I would like to remove the white space on the left for the first image, and the white space on the right of the last image, so it bleeds off of the page. However its not removing what i want.

what I'm using:

.collection-type-gallery #slideshowWrapper .slide img {
background-color: white !important; 
margin: 0px 6px;

.slide:first-child {
margin-left: 0px;}

.slide:last-child {
margin-right: 0px;}}

Upvotes: 0

Views: 190

Answers (1)

mezod
mezod

Reputation: 2391

.collection-type-gallery #slideshowWrapper .slide:first-child img

instead of

.collection-type-gallery #slideshowWrapper .slide img .slide:first-child

Upvotes: 1

Related Questions