Forum Discussion
EOMDevelepors
6 years agoQrew Captain
Is there anyway to add to the code page that my branding logo should also show as it would the native way on the left top of the page?
Thanks
Thanks
- EOMDevelepors6 years agoQrew CaptainI figured it out. Thanks
- EOMDevelepors6 years agoQrew CaptainThe way to do it is add to the code page a few lines:
var header = document.getElementById("customBrandBar").tBodies[0]; //get the tbody element
//this line is optional if you want to change the background color.header.style.backgroundColor = "red";
var tr = header.childNodes[0];
var td = tr.childNodes[1];
var img=document.createElement('img');
img.src="the logo url";
//this line is optional if you want to resize the image
img.style.height = '7%';
td.appendChild(img);- EOMDevelepors6 years agoQrew CaptainDid anyone try to implement BOL lately? I tried to turn it on and I get this error:
Uncaught SyntaxError: missing ) after argument list
------------------------------
EOM Develepors
------------------------------- RyanStanford16 years agoQrew CaptainI've noticed this as well... I'm currently troubleshooting the fact that my IOL code doesn't execute on Mobile anymore either.
------------------------------
Ryan Stanford
------------------------------