Hi there,
I'm trying to hide the menu from this page: https://www.tridentresults.com on here: https://onetime.sport/events/
I'm using this short code but can't get it to work:
[advanced_iframe src="https://www.tridentresults.com" width="100%" height="1400" hide_elements=".header navbar yamm navbar-default navbar-static-top fixedheader,.fixedheader-spacer"]
I managed to hide the menu using google console with this code:
var all = document.getElementsByClassName('navbar yamm navbar-default navbar-static-top fixedheader');
for (var i = 0; i < all.length; i++) {
all[i].style.display = 'none';
}
var all = document.getElementsByClassName('fixedheader-spacer');
for (var i = 0; i < all.length; i++) {
all[i].style.display = 'none';
}
Please help!
If you could provide the code to hide the footer as well that would be great.
Thanks
Connar