hi frank,
here the steps how to remove slideshow title:
replace your image title with blank space,
Code:
<img src="<%$tpl_base%>/images/banner/banner1.jpg" title="Banner 1" rel="http://#">
change to :
Code:
<img src="<%$tpl_base%>/images/banner/banner1.jpg" title=" " rel="http://#">
then open slide.css file and find and change background-color: #FFA928; to background-color: none; at opa class.
Code:
.opa{
color:white;
padding:10px 20px 0px 20px;
position: absolute;
z-index: 101;
background-color: #FFA928; <== change to background-color: none;
opacity:0.5;
filter: alpha(opacity=50);
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100,FinishOpacity=50, Style=3, StartX=0, FinishX=100, StartY=0,FinishY=16);
-moz-opacity: 0.5;
}
hope this clear.
thanks.