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!
Body tag attributes in website Themes
We are having trouble with our customer center showing the navigation in the show orders screen that normally shows up at the bottom in the event that the customer has more than one page worth of orders.
Previously we had solved this problem by overloading the CSS according to the following thread we posted a few months ago.
https://usergroup.netsuite.com/users/showthread.php?t=11738&page=3&highlight=visibility%3Ahidden
For the full solution, please refer to the above post, but in short, we created something along the lines of this:
function adjustLowerPanel() {
var myRater2 = document.getElementById("div__footer");
myRater2.removeAttribute("style");
0