Advertisement
arie_cristianD

make archive tag style same as category

Nov 26th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. /* make archive tag style same as category */
  2.  
  3. .archive.tag .jeg_archive_description {
  4.   font-size: 16px;
  5.   line-height: 1.5em;
  6.   color: #494949;
  7. }
  8.  
  9. .archive.tag .jeg_archive_title {
  10.   font-size: 36px;
  11.   font-weight: 700;
  12.   font-size: 36px;
  13.   line-height: 1.1;
  14.   letter-spacing: -0.04em;
  15. }
  16. @media only screen and (max-width: 667px) {
  17.   .archive.tag .jeg_archive_title {
  18.     font-size: 26px;
  19.   }
  20.  
  21.   .archive.tag .jeg_archive_description {
  22.     font-size: 15px;
  23.   }
  24. }
  25.  
  26. @media only screen and (max-width: 480px) {
  27.   .archive.tag .jeg_archive_title {
  28.     font-size: 27px;
  29.   }
  30.  
  31.   .archive.tag .jeg_archive_description {
  32.     font-size: 14px;
  33.   }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement