When I try to remove the second badge, which appears to not work anymore. I get the following response: ‘The “text” block was affected by errors and may not function properly. Check the developer tools for more details.’
This has been resolved on another forum. Here is the solution:
Customizer –> Additional CSS:
#lbOverlay {
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
/* background-color: #000; */
cursor: pointer;
background: none;
}
OR – `keep the overlay but put it behind the image, use this custom cs:’
#lbBottomContainer {
z-index: 9998 !important;
}
Thank you so much! 😀 Both options work!