I have a slideshow (jquery cycle) that I use for the background of a site. Problem is that I want to align the photos on the right and they have different dimmensions and for some reason the ones who have the smallest widths don't get aligned to the right... I tried to put the img's into divs like on person on the internet suggested and different things but to no avail. Is this possible without editing the plugin?
HTML:
<p class="slideshow">
<img src="31.jpg" alt="" />
<img src="35.jpg" alt="" />
<img src="36.jpg" alt="" />
</p>
CSS:
p.slideshow {
position:absolute;
top:0;
right:0;
z-index:-999;
overflow:hidden;
background: url(images/stripe-bg.png) repeat;
margin:0;
padding:0;
/* without setting the width and height 100% I get the
annoying scroll bar on the right if photos are big in height */
/*height:100%;
width:100%;*/
}
Do you have any clues how to align all of them to the right?
Thank you, Cris