Fixed  Sign Up Now! button text underlines on hover

Paul B

XenForo moderator
Staff member
This is changed behaviour from Beta 4 to Beta 5 even though the css though would indicate otherwise:

Code:
#SignupButton:hover span {
@property "signupButtonHover";
text-decoration: none;


It looks like the following css is overriding it:
Code:
a.concealed:hover, .concealed a:hover {
text-decoration: underline !important;
 
Top Bottom