Limited availability during the holidays
Another busy year is coming to its end, and an exciting year lies ahead. In order to get ready for a fresh new start, our team will spend a few days' rest during the winter holidays. Over the holiday break, we will have reduced staffing from December 20th, 2024, to January 5th, 2025, so please be patient if you do not receive a response as quickly as you normally would.
We send our warmest wishes for happiness, health, and success throughout the coming year. Thank you for your continued support, and may you have a peaceful and blessed Happy Holidays!
Having trouble with slide image background flashing off. Read documentation and it mentions commenting out GSAP file in theme.
Can you telll me if that is my problem and what to search for in theme to comment out?
Hey eric777,
The problem is caused by the following part of your style.css:
[class*="bg-"], [class*="bg-"] .wrap {
position: relative;
z-index: 2;
}
This sets every element that's classname contains "bg" to position: relative. The slider backgrounds (ls-bg) are also affected by it. You will need to remove this custom css or prevent it from applying on the slider to solve the issue.
Thank you Attila, that worked!!