#1 slideshow doesn't work can be conflict with other javascript? Could you ask more support with bowthemes.com/forums? we use their free module slideshow.
#2. You go to templates/jf_texturia/css/template.css line 284:
#jf-right .jfmod ul li a {
background: url("../images/jf_div2.png") repeat-x scroll left bottom transparent;
color: #FFFFFF;
display: block;
font-weight: normal;
height: 30px;
line-height: 30px;
text-decoration: none;
}
Then remove line "height:30px; "
#3. You go to templates\jf_texturia\html\mod_articles_latest\default.php line 20:
<?php echo substr($item->title,0,40); ?></a>
And replace with :
<?php echo $item->title,0,40; ?></a>