Advertisement
Mike_T

#652769

Sep 1st, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.48 KB | None | 0 0
  1. /* Align form to the left and remove extra space*/
  2. .form-all {
  3.     margin: 0;
  4. }
  5. .form-line {
  6.     padding-left: 0;
  7. }
  8. .form-header-group {
  9.     margin-left: 0;
  10. }
  11.  
  12.  
  13. /* Remove form top and bottom extra space */
  14. @media screen and (min-width: 1024px) {
  15. .jotform-form {
  16. padding: 0;
  17. }
  18. }
  19. @media screen and (max-width: 1024px) and (min-width: 768px) {
  20. .jotform-form {
  21. padding: 0;
  22. }
  23. }
  24. @media screen and (max-width: 768px) and (min-width: 480px) {
  25. .jotform-form {
  26. padding: 0;
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement