inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 9, 2012 10:57:23 GMT -8
Someone requested this earlier, so thought I would repost it.
Not sure if there is a better way to do it, but this will work...
Step 1:
Goto: Admin > Themes > Layout Templates
Step 2:
Click on the template called "Home".
Step 3:
Add the following script after "$[news]".
<script>
proboards.dataHash.news_speed = false; $(function(){ $("#news").slidable({ autoChange: 10000000, navigation: ".nav", items: ".items" }); });
</script>
|
|
inherit
170783
0
Nov 19, 2012 14:21:35 GMT -8
blueshead
Bottoms Up!
97
August 2011
blueshead
|
Post by blueshead on Nov 11, 2012 0:50:27 GMT -8
That was my request Peter.. Just one more question? Is there a way I can center the text also?
Thank you very much.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 12, 2012 9:05:42 GMT -8
That was my request Peter.. Just one more question? Is there a way I can center the text also? Thank you very much. I've updated the code above. However, if you want it center aligned, you can use this... <script>
proboards.dataHash.news_speed = false; $(function(){ $("#news").slidable({ autoChange: 10000000, navigation: ".nav", items: ".items" }).css("text-align", "center"); });
</script> It may be better to use CSS if you want more customisation, however that will do what you want for now.
|
|
inherit
170783
0
Nov 19, 2012 14:21:35 GMT -8
blueshead
Bottoms Up!
97
August 2011
blueshead
|
Post by blueshead on Nov 12, 2012 10:15:32 GMT -8
Thank You.. Thats very close to what I want and I see that I can control the speed.
Thank You very much!
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 12, 2012 10:36:03 GMT -8
Thank You.. Thats very close to what I want and I see that I can control the speed. Thank You very much! No problem
|
|