Guest User

Untitled

a guest
Sep 14th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. Need help lining some buttons
  2. <form action="login.php" method="post" id="loginform">
  3. <!-- ... -->
  4. <button style="clear: none;" class="button_colour round_all" id="loginbutton" onclick="document.forms['loginform'].submit();"><!-- ... --></button>
  5. <button style="clear: none;" class="button_colour round_all" id="registerbutton" onclick="location.href='register.php'"><!-- ... --></button>
  6. <!-- ... -->
  7. </form>
  8.  
  9. #loginbutton,
  10. #registerbutton {
  11. clear: none !important;
  12. }
  13.  
  14. #registerbutton {
  15. clear: none;
  16. display: block;
  17. float: left;
  18. margin: 10px 30px 55px;
  19. }
  20.  
  21. #loginbutton {
  22. clear: none;
  23. display: block;
  24. float: left;
  25. margin: 10px 30px 55px;
  26. }
Add Comment
Please, Sign In to add comment