That's not the standard way of centering things these days. One is supposed to give the item to be centered a width and a margin of 0 auto. However, you can correct the alignment of the images in the show by adding this to your stylesheet:
Code:
#fadeshow1 {
text-align: left;
}
Paradoxically, because the script already centers the images via top and left positioning, aligning to left (the default for all elements) will center them. But if you still want the descriptions centered (doing the above will align them to the left), you may add:
Code:
#fadeshow1 .descpanelfg {
text-align: center;
}
Alternatively, if you want to do it the 'right' way get rid of that align="center" attribute from the container. Put this in your stylesheet:
Code:
#fadeshow1 {
margin: 0 auto;
}
The script already sets the width for you. And you may still add:
Code:
#fadeshow1 .descpanelfg {
text-align: center;
}
to center the descriptions if you like.
Bookmarks