Advertisement
fauzanjeg

Show View Counter and Hide Share Counter in Mobile

Jan 20th, 2021
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.22 KB | None | 0 0
  1. /* Show View Counter and Hide Share Counter in Mobile */
  2. @media only screen and (max-width: 480px) {
  3.     .jeg_share_count {
  4.         display: none;
  5.     }
  6.    
  7.     .jeg_views_count {
  8.         display: unset;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement