I found this article extremely helpful and was successful in hiding the Sign Out link on the Home/Welcome page. Once you click on one of the links to be taken to a folder structure, search form, etc., there is a More dropdown in the upper-right corner, and the Sign Out link is still there. Has anyone successfully removed in both places or just the Welcome Page? Would you have to update the CSS for each 'link' on the Weblink page? We're still on 10.2 right now. Any help or guidance would be greatly appreciated.
Question
Question
Replies
replied one day ago
You may add this additional css to hide sign out button in dropdown menu:
/* Sign Out link in Dropdown*/ .topBarNavigation .dropdown-menu li:nth-child(3) { display: none; }
0
0
replied one day ago
@████████,
That may have worked, but I ended up going a different route. I searched for "more" in the CSS file and found where the .more-dropdown was. Under those few lines, I added this code:
/* Hide the entire More dropdown */ .more-dropdown { display: none !important; }
That seemed to do the trick, so I now have it hidden on the homepage and the link. Hope this helps!
1
0
You are not allowed to follow up in this post.