Hi,
I have created a new page template based on the original in WP 2.0. I removed the get the sidebar so my slideshow fits in the page:
<?php
/*
Template Name: slideshow
*/
?>
<?php get_header(); ?>
<div id="container" class="clearfix">
<div id="topcontentdouble"></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<div id="bottomcontentdouble">
</div>
</div> <!-- Closes the container div-->
<?php get_footer(); ?>
But as you can see here: http://www.poivre.net/?page_id=39
The "flash object" is aligned on the left. I use Kimili plug in. And this how I wrote the "Page" to display my slideshow:
<kml_flashembed movie="http://www.poivre.net/slideshow/slideshow.swf"height="480"width="640" align="center" wmode="opaque" play="false"></kml_flashembed>
But nothing changes whatever attribute I put. I think that it has something to do with the code in "slideshow" template i created. Any idea? Am i writing wrong the attribute to align the slideshow on the page?
Thank you for your help.