Advertisement
GochiSiyan

Change CSS order

Feb 18th, 2021
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. .jeg_account_nav ul {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5.  
  6. .jeg_account_nav li:nth-child(1) {
  7. order:1;
  8. }
  9.  
  10. .jeg_account_nav li:nth-child(2) {
  11. order:2;
  12. }
  13.  
  14. .jeg_account_nav li:nth-child(3) {
  15. order:4;
  16. }
  17.  
  18. .jeg_account_nav li:nth-child(4) {
  19. order:6;
  20. }
  21.  
  22. .jeg_account_nav li:nth-child(5) {
  23. order:5;
  24. }
  25.  
  26. .jeg_account_nav li:nth-child(6) {
  27. order:3;
  28. }
  29.  
  30. .jeg_account_nav li:nth-child(7) {
  31. order:7;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement