Reply To: Logo Swap?

#2330
livemesh
Keymaster

Yes, it is possible. Pls add the following JS to the js/main.js file at line number 79 this way –

handler: function (direction) {
                        if (direction == "down") {
                            $("img.standard-logo").attr('src','http://yourdomain.com/sticky-logo.png');
                        }
                        else {
                            $("img.standard-logo").attr('src','http://yourdomain.com/regular-logo.png'); /* Restore back the old logo when moving up */
                        }
                        if (lavaLamp !== null) {
                            lavaLamp.moveLava();
                        }
                    }