Advertisement
fauzanjeg

Display comment counter and view counter in mobile or tab

Feb 16th, 2021
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.31 KB | None | 0 0
  1. /* if width bellow 768px || TAB */
  2. @media only screen and (max-width : 768px) {
  3.     /* display comment counter */
  4.     .entry-header .jeg_meta_comment {
  5.         display: unset !important;
  6.     }
  7.    
  8.     /* display view counter */
  9.     .jeg_share_top_container .jeg_views_count {
  10.         display: unset;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement