How do I hide the Sign Up/Log In button
If you would like to remove the sign up/log in button on your platform, this can be done via CSS.
First, it is best to learn how to add custom CSS to your site by reading the following article: https://www.thrinacia.com/blog/post/tips-on-customizing-your-thrinacia-atlas-instance-via-simple-css-js-code
You can use this CSS selector to target the sign in button specifically:
#nav-wrapper div.nav-main-right.right.menu > a {
display: none;
}
You also might need to add some padding once the button is hidden, you can add this to restore the padding to search bar if needed:
#nav-wrapper div.nav-main-right.right.menu > .search-item {
padding-top: 1.8em;
padding-bottom: 1.8em;
}