tekknolagi
tekknolagi

Reputation: 11012

align wordpress slideshow in center

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

Answers (2)

Brent Anderson
Brent Anderson

Reputation: 966

#slideshow-wrapper { margin: 0 auto; } will work in most browsers.

Upvotes: 0

Lautaro Orazi
Lautaro Orazi

Reputation: 166

try this

 #slideshow-wrapper { position:relative; margin: 0 auto; }

Upvotes: 1

Related Questions