First off, I would like to say that I love this plug-in. Helps me greatly with me site.
Anyway, after spending a whole afternoon coding a new add-on and a theme from the Skinless theme, i realized that I wasn't able to change the codes for the arrow. I didn't know how to do it with my level of php, which is not that great.
This is the code provided with the Skinless theme.
<div class="theme-skinless" style="width:<?php echo $config['CAROUSEL_WIDTH']; ?>">
<?php if ($config['ARROWS']): ?>
<div class="arrow-right"><a href="javascript:stepcarousel.stepBy('carousel_<?php echo $c_id; ?>', -<?php echo $config['SLIDE_POSTS']; ?>)"><?php printf(__('Foward', 'wp_carousel'), $config['SLIDE_POSTS']); ?></a></div>
<div class="arrow-left"><a href="javascript:stepcarousel.stepBy('carousel_<?php echo $c_id; ?>', <?php echo $config['SLIDE_POSTS']; ?>)"><?php printf(__('Back', 'wp_carousel'), $config['SLIDE_POSTS']); ?></span></a></div>
<div class="clear"></div>
<?php endif; ?>
</div>
and the result is that i can only use words for the arrows. also, i had to place at the top of the slide.
however, i want to convert it to arrows. and if possible, be something similar to the slide on this site: http://withs2.com/
Thank you for helping me. I hope to get some answers soon. :)