getElementsByClassName returns a collection (even if there is only one item in that collection) which needs to be accessed by array methods.
So you would be better off trying something like this, I think:
Code:
var ele = document.getElementsByClassName('ss-footer')[0];
ele.style.display = "block";