Quote:
Originally Posted by douffle
Thanks Bobster65, I missed the begining forward slash in the path. The tabs are there now.
One final question though. The announcements are still auto-rotating back and forth. How do you set it up so that it only changes if you click the tabs?
Thanks again.
|
Cool Beans ..
To modify the auto rotation, edit the "smnlikquick" template and look for this code towards the bottom of it..
Code:
<script type="text/javascript">
var mytabs=new ddajaxtabs("tabs", "divcontainer")
mytabs.setpersist(false)
mytabs.setselectedClassTarget("link")
mytabs.init(5000)
</script>
Change the mytabs.init(5000) to mytabs.init() the 5000 is in microseconds, so it was set to rotate every 5 seconds... setting it to () removes the rotation completely and makes it so that you have to click on a tab.