Reputation: 11012
I have a slideshow of pictures that I am trying to center align. Right now, none of the following work:
<center></center>
#slideshow {text-align: center}
or setting the style via JS. I have a mockup at http://voicesunited.tk/
How can I center it?
Upvotes: 0
Views: 649
Reputation: 966
#slideshow-wrapper { margin: 0 auto; }
will work in most browsers.
Upvotes: 0
Reputation: 166
try this
#slideshow-wrapper { position:relative; margin: 0 auto; }
Upvotes: 1