The CSS classes for SAG scroller are now correctly loaded inside your template.css file. However, it seems there are some CSS conflicts with some of the other classes defined on the same page that's causing the issues you're seeing. I can't quite pinpoint what those other classes are (as there are a lot of them on your page). You can for the time being try and edit the CSS classes for SAG Scroller to compensate for these conflicts. Try finding the below CSS class inside template.css:
Code:
.sagscroller ul{
position:absolute;
margin:0;
padding:0;
background:white;
list-style:none;
width: 100%;
}
and change that to:
Code:
.sagscroller ul{
position:absolute;
margin:0;
padding:0;
background:white;
list-style:none !important;
width: 100%;
}
.sagscroller img{
margin-left: -14px;
}
This should get the scroller to look somewhat as it does in the DD demo...
Bookmarks