if you want to scroll the news plz replace this script code under
plugin–>sp-news-and-widget–>sp-news-and-widget.php line no 358
<script type=”text/javascript”>
jQuery(function() {
jQuery(".newsticker-jcarousellite").jCarouselLite({
vertical: <?php echo $vtrue; ?>,
hoverPause:true,
visible: <?php echo $vvisible; ?>,
auto: <?php echo $vdelay; ?>,
speed:<?php echo $vspeed; ?>,
});
jQuery(".newstickerthumb-jcarousellite").jCarouselLite({
vertical: <?php echo $vtrue; ?>,
hoverPause:true,
visible: <?php echo $vvisible; ?>,
auto: <?php echo $vdelay; ?>,
speed:<?php echo $vspeed; ?>,
});
jQuery(".newstickerthumbmain-jcarousellite").jCarouselLite({
vertical: <?php echo $vtruenews; ?>,
hoverPause:true,
visible: <?php echo $vvisible; ?>,
auto: <?php echo $vdelay; ?>,
speed:<?php echo $vspeed; ?>,
});
});
</script>
with this one
<script type="text/javascript">
$(function() {
$(".newsticker-jcarousellite").jCarouselLite({
vertical: <?php echo $vtrue; ?>,
hoverPause:true,
visible: <?php echo $vvisible; ?>,
auto: <?php echo $vdelay; ?>,
speed:<?php echo $vspeed; ?>,
});
$(".newstickerthumb-jcarousellite").jCarouselLite({
vertical: <?php echo $vtrue; ?>,
hoverPause:true,
visible: <?php echo $vvisible; ?>,
auto: <?php echo $vdelay; ?>,
speed:<?php echo $vspeed; ?>,
});
$(".newstickerthumbmain-jcarousellite").jCarouselLite({
vertical: <?php echo $vtruenews; ?>,
hoverPause:true,
visible: <?php echo $vvisible; ?>,
auto: <?php echo $vdelay; ?>,
speed:<?php echo $vspeed; ?>,
});
});
</script>