Hey @SteveRobin63604, instead of JS, you can do this a lot simpler in the CSS code, assuming you want to always hide the crumbtrail.
Using visbility:hidden will hide it, and won’t shift other elements.
.kn-crumbtrail {
visibility: hidden;
}
If you want to apply it to particular scenes only, you can use your existing JS method with a minor tweak:
I have very little CSS or JS stored on the app which I have checked and still not getting this to function as expected. I did have success removing the crumbtrail using JS as per my original post but the problem was the account settings moving from the RHS to the LHS. I am thinking that I need to find a solution to push this back to its original position.