Peanut is talking about directly inserting a CSS margin into your empty DIV that houses your slideshow. Technically the generic way to center the slideshow is with the following margin definition:
Code:
<div id="fadeshow1" style="margin:auto"></div>
Or setting "margin" to "auto". In order for this to work in IE, make sure your page contains a valid doctype at the very top, such as:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
Bookmarks