Thank you very much for your continued help.
I am very sorry, I am very much a noob when it comes to JavaScript. I got mixed up, I thought block meant to block the text.
I tried the CSS solution, but I couldn't get it to work. I think this might be because the iFrame is getting it's own CSS. (Just an hunch, I'm completly open for correction)
I tried creating an on load event but it doesn't seem to be working either. I hate to keep bothering you but I would appreciate any thoughts on why it still isn't working. Thank you!
Code:
<div id="content">
<!-- box-container -->
<div class="box-container">
<div class="holder">
<div class="frame">
<iframe width="760" height="1231" frameborder="0" src="https://*****" marginheight="0" marginwidth="0" onload="load()">Loading... </iframe>
<script language="javascript">
function load()
{
var ele = document.getElementsByClassName('ss-footer')[0];
ele.style.display = "none";
}
</script>
</div>
</div>
</div>
</div>