Support » Plugins » Simple Nivo Slider – How to Align Slider?

  • Hi,

    I have installed the simple nivo slider plugin and have added it to my homepage. Is there any way of center aligning it in my site?

    I added the slider by adding this code to my index.php file:

    <?php if (function_exists(‘simple_nivo_slider’)) simple_nivo_slider(); ?>

Viewing 1 replies (of 1 total)
  • You can easily align it in any way you want using CSS styling…

    Try something like this:
    <div id=”mywrapper”>
    <?php if (function_exists(‘simple_nivo_slider’)) simple_nivo_slider(); ?> </div>

    and add this to your styles…

    #mywrapper { width: 800px; margin-left: auto; margin-right: auto; }

    (tweak to your liking :-))

Viewing 1 replies (of 1 total)
  • The topic ‘Simple Nivo Slider – How to Align Slider?’ is closed to new replies.