i'm using an advanced layout for the site and i made buttons for the main menu instead of the one on the left.. now using IfRank:XXX tags makes the button show for rank XXX and above but it is possible to show a certain button (Apply) only for non-members?
At the moment, the only way to accomplish this would be to use some kind of cheap javascript hack.
Like the following:
<script language=javascript> <!--System:IfRank:8--> document.getElementById("apply_button").style.display="none"; <!--System:EndIfRank--> </script> That would simply hide the button from any user above rank 8 (I don't know your rank configuration, but obviously you could modify it as necessary), and also assuming your "Apply" button has id="apply_button" in it.