Hey guys, I need some help with CSS code.
What happened:
I wanted to hide the navigation arrows on sliders from home page, which I did sucessfully, however I also disable them on a product page gallery slider. Is there a way to hide navigation everywhere except product page.
Initial code to hide all navigation:
.slider-buttons {
display: none !important;
}
I tried to select class id of the product page gallery:
#MediaGallery-template--15961445400730__main .slider-buttons {
display: visible !important;
}
It didn’t work ![]()
Thanks

