I’m using a fullscreen Slideshow as my homepage with a centered ‘Enter’ button. I would like for that button to only appear when the mouse is rolled into the screen.
I was able to use similar code below to accomplish this with the Next & Prev arrows but I’m not sure how to implement the same thing for the slider buttons. I can use some help.
.arrow_controls.slide_controls {
opacity: 0;
}
#slideshow_big:hover .arrow_controls.slide_controls {
opacity: 1 !important;
}
Hey netcoenterprises,
May you share your website link? This way will be easier to provide some custom code to help you.
Best regards,
John Torvik
Hello,
See link below. Thank you for your attention.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .avia-slideshow-button {
display: none;
}
#top .avia-slideshow:hover .avia-slideshow-button {
display: inline-block!important;
}
I have tested this code on your installation and works 100% please make sure to refresh the cache to preview changes.
Best regards,
Vinay
Vinay – That works perfectly – awesome. THANK YOU