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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Save $30 - limited to first 1,000 registrants
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
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