Support Forums for LiveMesh Themes & Plugins › Forums › Extinct Theme Support › Logo Swap? › Reply To: Logo Swap?
October 21, 2013 at 5:07 am
#2330
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();
}
}