wordpress - How to center slider in css? -
i installed plugin on theme. theme had slider, didn't it. installed one.
http://wordpress.org/extend/plugins/content-slide/
i tried using
#wpcontent_slider_container{ position:relative; margin: 0 auto; }
and this
#wpcontent_slider_container{ position:relative; margin-left:auto; margin-right:auto; }
and nothing happens.
do have put in div?
i had same problem. how solved it:
#wpcontent_slider_container { margin-left: auto !important; margin-right: auto !important; } #wpcontent_slider { /* styling here */ }
without "!important" thingy css didn't work fo me either.
Comments
Post a Comment