@zetpap
Hi,
Thanks for reaching out.
If possible, please send me the link to the page where your slider is displayed so I can check it. This issue normally shouldn’t happen, so it’s likely related to something else, and I’ll do my best to find the cause for you.
Thread Starter
zetpap
(@zetpap)
Good day, here it is: https://laonikosapts.gr/
Thank you so much!
@zetpap
Hi,
Thanks for following up.
I checked your site, and as I suspected, the issue is coming from the theme.
There’s a CSS style applied to the body that creates an invisible layer over the entire page. Because of that, when you click on Depicter’s buttons, you’re actually clicking on that invisible layer.
The CSS causing the issue is:
body.page-template-template-front-page .site-content .site-main>.hentry .front-page-header-wrapper:after {
content: '';
background: #3e3f46;
opacity: .5;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
If you add the code below in Appearance > Customize > Additional CSS, it will override that style:
body.page-template-template-front-page .site-content .site-main>.hentry .front-page-header-wrapper:after {
display: none;
}
However, to make sure this fix doesn’t affect anything else on your site, it’s best to also contact the theme’s support team for confirmation.
Please let me know the result
Thread Starter
zetpap
(@zetpap)
Thx a million! This worked like a charm. Thank you so very much!!!!!
You are welcome and I am happy I could help 😉