Jump to content
WebFlake
  • 0

Animate Skin Remove Scrolling Banner?


BlueSkiLLz

Question

3 answers to this question

Recommended Posts

  • 1
Guest Harvest

Find the ipbforumskins.js file (it's in whatever_image_set > js > ipbforumskins.js) and find this near the bottom.

 

var backgroundpos = 0;
    var offset = 1;
    function scrollbackground() {
        offset = (offset < 1) ? offset + (backgroundpos - 1) : offset - 1;
        $('#branding').css("background-position", + offset + "px 0");
        setTimeout(function() {
            scrollbackground();
            }, 100
        );
    }
    scrollbackground();

 

Change it to this.

 

 
/*var backgroundpos = 0;
    var offset = 1;
    function scrollbackground() {
        offset = (offset < 1) ? offset + (backgroundpos - 1) : offset - 1;
        $('#branding').css("background-position", + offset + "px 0");
        setTimeout(function() {
            scrollbackground();
            }, 100
        );
    }
    scrollbackground();
*/

 

Re-upload and you're done.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...