Advertisement
fauzanjeg

tidying up the code

Feb 1st, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.31 KB | None | 0 0
  1. .hide_on_dekstop {
  2.     display: none;
  3. }
  4.  
  5. @media only screen and (max-width: 767px) {
  6.     .hide_on_mobile {
  7.         display: none;
  8.     }
  9.  
  10.     .hide_on_dekstop {
  11.         display: block;
  12.     }
  13. }
  14.  
  15. /* Hide Share Counter on Popular Widget */
  16. .popularpost_meta .jeg_socialshare {
  17.     visibility: hidden;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement