Why is it so difficult to hide a checkbox that says "Remember Me" on my membership site login form?
The HTML code snippet causing the issue:
<label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label>
Despite my CSS attempt below, I am unable to hide it:
.rememberme {
display: none
}
Still struggling with hiding the 'label' section of the HTML. Any tips would be much appreciated!
Thanks in advance!
++++ EDIT ++++
Providing the full code for better context and clearer assistance. Your help is highly valued!
<form name="mepr_loginform" id="mepr_loginform" class="mepr-form" action="https://my-site.com/login/" method="post">
(...)
<div>
<label><input name="rememberme" type="checkbox" id="rememberme" value="forever" />Remember Me</label>
</div>
(...)
</form>