Rounded corners in basic jquery slider

I have found this simple to use slider which can be implemented with a CMS:
http://www.basic-slider.com

I am trying to have all images with rounded corners. The first image to load has them, but subsequent images do not:
http://www.newyoubootcamp.com/dev2/spain-luxury-boot-camp.php

This is the supplied css, where I have added the border radius:
/* Basic jQuery Slider essential styles */

ul.bjqs{position:relative; list-style:none;padding:0;margin:0;overflow:hidden;display:none;border-radius:9px;}
li.bjqs-slide{position:absolute; display:none; border-radius: 5px;}
ul.bjqs-controls{list-style:none;margin:0;padding:0;z-index:9999;}
ul.bjqs-controls.v-centered li a{position:absolute;}
ul.bjqs-controls.v-centered li.bjqs-next a{display:none; right:0;}
ul.bjqs-controls.v-centered li.bjqs-prev a{display:none; left:0;}
ol.bjqs-markers{list-style: none; padding: 0; margin: 0; width:100%;}
ol.bjqs-markers.h-centered{text-align: center;}
ol.bjqs-markers li{display:none;}
ol.bjqs-markers li a{display:none;}
p.bjqs-caption{display:none;width:96%;margin:0;padding:2%;position:absolute;bottom:0;}

Is there anything else I can add to make sure all the images in the slider has the rounded corners and not just the first one.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

What about

li img {
	-webkit-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

or if you need more specificity

ul.bjqs li img {
	-webkit-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

Todd
http://xiiro.com


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Superstar!

Cheers Todd… I really should make a mental note of all these tips.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Nathan, just a quick FYI. This page doesn’t seem to be working: http://www.newyoubootcamp.com/about-us.html Hope all is well.

-K


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options