Hi,
Can anhyone thnk of a way to align the slideshow box to the right of a page, all I can do is get it centre like so
http://jacksonglass.co.uk/wordpress/splashbacks-mirrors/splashbacks/
Can't see anyway to align it code wise that works within wordpress. The plusin i'm using doesn't seem to help that much.
http://wordpress.org/extend/plugins/simple-slideshow/
The code of that little piece is.
--------
MISSING COPY – Need copy for splashbacks. MISSING COPY MISSING COPY MISSING COPY
[simple_slideshow show_counter="0" auto_advance="1" auto_advance_speed="3000"]
<hr />
<em>Looking for splashback or mirror fitters in High Wycombe, Gerrards Cross, Beaconsfield, Loudwater, Bourne End, Marlow, Hazlemere, Princes Risborough and surrounding areas. Jackson Glass your local splashback fitter. Call on 01494 812207 or 0777 575 3329 on <a href="
http://jacksonglass.co.uk/wordpress/doors/contact-us/">contact us</a>.</em>
-------
.simpleslider_show {
margin: 10px auto;
}
That's a definition for top/bottom vs. left/right ("auto" is to blame!)
Try following:
.simpleslider_show {
margin: 10px 0px 10px 0px;
}
That's defining the elements margins for top, right, bottom and left resp.