Fantastic Mod ..........
A little improvement (but only in my humble opinion)
I dislike the "quick" transition but as has been said this was changed via the js xml coding
But caused some issues in the rendering when used with thumbs - lagging etc so
As has been said in other posts:
lose the thumbs via the
vbcms_widget_cmsfcs_page template
PHP Code:
.ui-tabs-nav {
display: none;
}
Same template change the script to
PHP Code:
<script type="text/javascript">
$(document).ready(function(){
$(".cmsfcs_{vb:raw id}").tabs({ fx: {opacity: 'toggle', duration:'slow'} }).tabs("rotate", 5000, true);
$(".cmsfcs_{vb:raw id}").hover(
function() {
$(".cmsfcs_{vb:raw id}").tabs("rotate",0,true);
},
function() {
$(".cmsfcs_{vb:raw id}").tabs("rotate",5000,true);
}
);
});
</script>
This will remove thumbs render the images with a nice transition and the codeline below will clean up the info bar
PHP Code:
.cmsfcs_{vb:raw id} .ui-tabs-panel .info{
position:absolute;
top:242px;
left:0px;
height:70px;
width:650px;
opacity: .75;
background: black;
margin: 0 auto;
}
This has the width of the slider at 650px and the info bar the same (but obviously change to your site if needed)
It also means you can have a few more articles etc without the rendering being incorrect given the thumbs are removed
as you can see i now have 7 latest articles with a nice smooth transition and an info bar that is 100% for a clean look and render.
Just a thought
http://www.tabletennistalk.co.uk