Hi,
my wishlist flowting button is covering the dropdown menu for desktop and mobile, can anyone help setting the code ?
Password: skeont
this didn’t help :
.dropdown-menu {
position: relative;
z-index: 99999;
}
thank you in advance
Try this:
CSS:
.dropdown-menu {
position: absolute;
z-index: 99999; /* Ensures it appears above other elements */
}
.wishlist-button {
position: fixed;
z-index: 10; /* Lower than dropdown /
bottom: 20px; / Adjust if needed /
right: 20px; / Adjust if needed /
pointer-events: none; / Allows clicks to pass through if needed */
}
If the issue persists, try wrapping the .wishlist-button inside a div and applying pointer-events: auto; only on the button inside.
fine for me on desktop & mobile