Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Going crazy. New to css. Just want this image carousel to work
I am trying to get this image carousel to work on my site and appear in my Home category without having a mind of its own. This code apparently ignores placement however and its incredibly frustrating. Can someone who is better at coding please help me with a fix to get this carousel to stay contained inside the Home section and not float in front of everything in big huge full screen?
CSS (in theme body)
@charset "UTF-8"; [data-am-fadeshow] { position: relative; width: 100%; height: 100%; overflow: hidden; background-color: #fff; /* Slides */ /* Quick Navigation */ /* Prev/Next Navigation */ /* Base functionality */ /* Autohide Prev/Next Navigation */ } [data-am-fadeshow] .fs-slide { position: absolute; top: 0; bottom: 0; left: 0; right: 0; opacity: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transition: opacity 1s ease; /* Display first child on load */ } [data-am-fadeshow] .fs-slide:first-child { opacity: 1; } [data-am-fadeshow] .fs-quick-nav { position: absolute; bottom: 15px; left: 50%; z-index: 1; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-transform: translateX(-50%); transform: translateX(-50%); } [data-am-fadeshow] .fs-quick-btn
0