Aurangajeb

Media Query CSS for WPUF Multi-step form issue

Jan 3rd, 2020 (edited)
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.74 KB | None | 0 0
  1. @media (min-width:320px)  {
  2. /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  3. .wpuf-step-wizard li {
  4. width: auto !important;
  5. }
  6. }
  7. @media (min-width:480px)  {
  8. /* smartphones, Android phones, landscape iPhone */
  9. .wpuf-step-wizard li {
  10. width: auto !important;
  11. }
  12. }
  13. @media (min-width:600px)  {
  14. /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  15. .wpuf-step-wizard li {
  16. width: auto !important;
  17. }
  18. }
  19. @media (min-width:801px)  {
  20. /* tablet, landscape iPad, lo-res laptops ands desktops */
  21. .wpuf-step-wizard li {
  22. width: auto !important;
  23. }
  24. }
  25. @media (min-width:1025px) {
  26. /* big landscape tablets, laptops, and desktops */
  27. .wpuf-step-wizard li {
  28. width: auto !important;
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment