Advertisement
Guest User

Untitled

a guest
Dec 19th, 2018
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <style>
  2. @media (min-width: 768px){
  3. .navbar-header .head-contact-social li.cart-icon{
  4. display: none !important;
  5. }
  6. }
  7.  
  8. @media only screen and (max-width: 767px) and (min-width: 480px){
  9. .head-contact-social {
  10. float: right !important;
  11. }}
  12.  
  13. @media only screen and (max-width: 767px) and (min-width: 480px){
  14. .navbar-nav li.cart-icon{
  15. display:none !important;
  16. }
  17. }
  18.  
  19. @media only screen and (max-width: 480px) and (min-width: 200px){
  20. .navbar-nav li.cart-icon{
  21. display:none !important;
  22. }
  23. }
  24.  
  25. @media only screen and (max-width: 200px) {
  26. .navbar-nav li.cart-icon{
  27. display:none !important;
  28. }
  29. }
  30.  
  31. @media only screen and (max-width: 480px) and (min-width: 200px){
  32. .navbar-header .navbar-toggle {
  33. position: absolute;
  34. top: 10px;
  35. left: 0px;
  36. }}
  37.  
  38. @media only screen and (max-width: 480px) and (min-width: 200px){
  39. ul.head-contact-social {
  40. position: absolute;
  41. top: 0px;
  42. right: 0px;
  43. }}
  44. </style>
  45.  
  46. <script>
  47. jQuery(function($){
  48. $("#menu-menu ul.head-contact-social").clone().insertAfter(".navbar-header .navbar-toggle").find('li').not('.cart-icon').remove();
  49. });
  50. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement