Advertisement
fauzanjeg

Fix Font Size issue || Custom Change

Jun 25th, 2021
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.78 KB | None | 0 0
  1. /* Fix Font Size issue || Custom Change */
  2.  
  3. /* Mobile S */
  4. @media only screen and (max-width: 320px) {
  5.     .jeg_slide_item .jeg_slide_caption .jeg_caption_container .jeg_post_title a {
  6.         font-size:10px !important;
  7.     }
  8. }
  9. /* Mobile M */
  10. @media only screen and (max-width: 375px) {
  11.     .jeg_slide_item .jeg_slide_caption .jeg_caption_container .jeg_post_title a {
  12.         font-size:20px !important;
  13.     }
  14. }
  15. /* Mobile L */
  16. @media only screen and (max-width: 425px) {
  17.     .jeg_slide_item .jeg_slide_caption .jeg_caption_container .jeg_post_title a {
  18.         font-size:30px !important;
  19.     }
  20. }
  21. /* Tablet */
  22. @media only screen and (max-width: 768px) {
  23.     .jeg_slide_item .jeg_slide_caption .jeg_caption_container .jeg_post_title a {
  24.         font-size40px !important;
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement