XenForo Tutorials

Animate node and thread title

Submitted by Bi0S, , Thread ID: 38067

Thread Closed
Bi0S
Leaks God
Pirates
Level:
0
Reputation:
91
Posts:
7.83K
Likes:
386
Credits:
25.7K
22-06-2017, 09:28 PM
#1
Animate node and thread title

Appearance -> Styles -> You Style -> Templates -> page_container_js_body

In the very beginning add the following code:

Code:
<script type="text/javascript">
$(document).ready(function(){
$("h3 a").hover(function(){
$(this).stop().animate({marginLeft:"10px"},300);}
,function(){
$(this).stop().animate({marginLeft:"0px"},300);
});
});
</script>

Thats it enjoy!
[Image: KiXcHZw.gif]
[Image: yOythq1.png]

Users browsing this thread: 1 Guest(s)