Reputation: 595
At this URL I have modified/hack together the slideshow. Yet the images are not centered. I see the jquery function that powers the width in between, but do not fully understand how to get these images centered. Might anyone have suggestions/tips?
Also the arrows disappear when they reached the last image. How to keep them visible and make the image scroll a carousel?
Upvotes: 0
Views: 731
Reputation: 15845
@Jonah ,
Something wrong your html markup , but as a quick fix...you can try this
.slide h2, .slide p {
margin: 0 90px; //top , right , bottom , left
}
play around with margin , it will center it.
Upvotes: 1