this is the code in your preset?
$(".roundedCorners").each(function() {
$(this).wrap('<div class="rounded" style="background:url(' + $(this).attr('src') + ') no-repeat center center;" />');
//width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;
if ( $(this).width() != "" ) { $(this).parent().css("width", $(this).width() + "px" ); }
if ( $(this).height() != "" ) { $(this).parent().css("height", $(this).height() + "px" ); }
$(this).hide();
});
$('.rounded').ccorner({
tl: { radius: 10 },
tr: { radius: 10 },
bl: { radius: 10 },
br: { radius: 10 },
antiAlias: true,
autoPad: true,
});
maybe:
copy the original and paste it below, than change the classes to:
$(".roundedCorners2").each(function() {
$(this).wrap('<div class="rounded2" style="background:url(' + $(this).attr('src') + ') no-repeat center center;" />');
//width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;
if ( $(this).width() != "" ) { $(this).parent().css("width", $(this).width() + "px" ); }
if ( $(this).height() != "" ) { $(this).parent().css("height", $(this).height() + "px" ); }
$(this).hide();
});
$('.rounded2').ccorner({
tl: { radius: 20 },
tr: { radius: 20 },
bl: { radius: 20 },
br: { radius: 20 },
antiAlias: true,
autoPad: true,
});
and give your pics the class roundedCorners2