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!
Update your Profile with your Support type to get your Support Type badge.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
NetSuite 2025.2 Release Notes - This document summarizes the changes to NetSuite between 2025.2 and the previous release.
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
SuiteWorld October 6 - 9, 2025: Agenda Builder is live!
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to 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