I figured it was safe to post this question here as it doesn't really pertain to the easy slider, but rather to its position. I would like to center the easy slider and I cannot for the life of me figure out how.
Any and all help appreciated.
I figured it was safe to post this question here as it doesn't really pertain to the easy slider, but rather to its position. I would like to center the easy slider and I cannot for the life of me figure out how.
Any and all help appreciated.
Owner - MatchLock Arms, LLC and M&M Toys (Yes I sell toys and guns, but not toy guns)
http://www.matchlockarms.com
http://www.mandmtoys.com
Try this just add the quotes in red
<center>
<p style="text-align: left; ">
<script type="text/javascript" src="fade.js"></script><script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 640, 240, 0, 4000, 0 )
</script></p>
<center>
What ever your doing remember to KISS ( Keep It Simple Stupid )
Owner - MatchLock Arms, LLC and M&M Toys (Yes I sell toys and guns, but not toy guns)
http://www.matchlockarms.com
http://www.mandmtoys.com
Last edited by matchlock; 7 Feb 2012 at 11:29 PM.
Owner - MatchLock Arms, LLC and M&M Toys (Yes I sell toys and guns, but not toy guns)
http://www.matchlockarms.com
http://www.mandmtoys.com
I believe I have it a little better aligned. In the stylesheet.css i added text-align: right;
/* Easy Slider */
#slider ul, #slider li,
#slider2 ul, #slider2 li{
margin:0;
padding:0;
list-style:none;
text-align: right;
}
Hope this helps anyone else searching for this in the future.
Owner - MatchLock Arms, LLC and M&M Toys (Yes I sell toys and guns, but not toy guns)
http://www.matchlockarms.com
http://www.mandmtoys.com
I know this is an old thread, but if you edit line 209 of stylesheet.css you can center it. This is mine:
#control_div{width:200px;height:18px;position:relative;left:210px;top:0px;margin-bottom:10px;}
Edit the "left": ((Total page width) minus (left sidebar + right sidebar) minus #control_div{width})/2
My scenario: (1000px - (190px+190px) - 200)/2 = 210
Methinks it better to use margin:0 auto; on an element of defined width within a div of defined width, where the widths can be expressed as % for greater flexibility.