I added Nivo Slider to my Wordpress theme.
In the demo provided with the file the nivo-ControlNav has position absolute, and it is moved to the right.
I would like to know if there is a way of centering the nivo-ControlNav (and it should even be centered in Internet Explorer)?
front-page.php:
<div id="feature">
<div class="container">
<div id="slider-wrapper">
<div id="slider">
<?php // Retrive custom post type with a custom taxonomy assigned to it
$posts = new WP_Query('post_type=page_content&page_sections=Slider (Front Page)&order=ASC') ?>
<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<div class="shadow-slider">
<!-- Shadow at the bottom of the slider -->
</div>
</div>
</div><!-- .container -->
</div><!-- #featured -->
stlye.css:
#feature {
background: #333;
padding: 30px 0;
height: 400px;
}
#slider-wrapper {
float: left;
height: 500px;
}
#slider {
float: left;
border: 1px solid #DDD;
}
#slider {
position:relative;
background:url(images/loading.gif) no-repeat 50% 50%;
}
#slider img {
position:absolute;
top: 0px;
left: 0px;
display: none;
}
#slider a {
border: 0;
display: block;
}
.nivo-controlNav {
position: absolute;
left: 260px;
bottom: -42px;
width: 50%;
left: 0;
right: 0;
margin: 0 auto;
}
.nivo-controlNav a {
display: block;
width: 22px;
height: 22px;
background: url(images/bullets.png) no-repeat;
text-indent: -9999px;
border: 0;
margin-right: 3px;
float: left;
}
.nivo-controlNav a.active {
background-position: 0 -22px;
}
.nivo-directionNav a {
display: block;
width: 30px;
height: 30px;
background: url(images/arrows.png) no-repeat;
text-indent: -9999px;
border: 0;
}
a.nivo-nextNav {
background-position: -30px 0;
right: 15px;
}
a.nivo-prevNav {
left: 15px;
}
.nivo-caption {
text-shadow:none;
font-family: Helvetica, Arial, sans-serif;
}
Or should I just use the float: left; margin: 0 auto; trick?
EDIT:
I decided to do this:
.nivo-controlNav {
margin: 0 auto;
overflow: hidden;
width: 200px;
}
.nivo-controlNav {
margin: 0 auto;
overflow: hidden;
width: 200px;
}
but the links inside the nivo-controlNav div are not centered.
Any suggestions?