Comments 2eric777 started the conversationFebruary 3, 2017 at 5:59amHaving 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? eric777 replied privately[deleted] repliedFebruary 4, 2017 at 1:43pmHey 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. 2eric777 repliedFebruary 4, 2017 at 4:45pmThank you Attila, that worked!! Sign in to reply ...
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!!