- Lorem ipsum dolor sit amet.
- Consectetuer adipiscing elit sed diam.
- Nibh euismod tincidunt ut.
- Laoreet dolore magna aliquam erat.
- Ut wisi enim ad.
Click outside to hide the comparison bar
(function () {
function makeButtonsRelative() {
document.querySelectorAll(
'button.single_add_to_cart_button.single_add_to_cart_ajax_button'
).forEach(function (button) {
button.style.setProperty('position', 'relative', 'important');
button.style.setProperty('top', 'auto', 'important');
button.style.setProperty('right', 'auto', 'important');
button.style.setProperty('bottom', 'auto', 'important');
button.style.setProperty('left', 'auto', 'important');
button.style.setProperty('inset', 'auto', 'important');
});
}
makeButtonsRelative();
// Re-apply when WooCommerce/theme changes the button dynamically
const observer = new MutationObserver(function () {
makeButtonsRelative();
});
observer.observe(document.body, {
childList: true,
subtree: true,
attributes: true,
attributeFilter: ['class', 'style']
});
})();