bharatmakwana

How to Add Icon to Category on WordPress

Jan 14th, 2021 (edited)
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.33 KB | None | 0 0
  1. .class-name ul {
  2.   list-style: none;
  3.   padding: 0;
  4.     color:#002468;
  5. }
  6.  
  7. .class-name li {
  8.   padding-left: 1.3em;
  9.     font-weight: bold;
  10.     font-size:18px;
  11. }
  12.  
  13. .class-name li:before {
  14.     font-size:16px;
  15.   content: "\f138";
  16.   font-family: FontAwesome;
  17.   display: inline-block;
  18.   margin-left: -1.3em;
  19.   width: 1.3em;
  20. }
Add Comment
Please, Sign In to add comment