Hi, I have a ‘log in / sign up’ button on my page https://rkade.uk.com/news on MOBILE only.
I have set another button up directly underneath it to show to logged in user only. Trouble is, I don’t want the ‘log in’ button to show for users that are already logged in. The same principle is not working for this…
I have given the button the class ‘login’
and used the CSS;
.logged-in .login {
display: none !important;
}
Would this be correct?