I have some WP Members plugin-generated html that I can't change, and am having trouble styling.
<div class="button_div">
<input name="rememberme" type="checkbox" id="rememberme" value="forever">
" Remember Me "
<input type="submit" name="submit" value="LogIn" class="buttons">
</div>
I need to move the first input checkbox and the "Remember Me" text to the left, but can only target the checkbox alone, or the entire button_div
with Sass/CSS. Is there a way with Javascript or some other technique to move the checkbox and Remember Me text without moving the submit button?