Advertisement
arie_cristianD

remove thumbnail from jnews popular post widget

Jun 4th, 2025
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.13 KB | None | 0 0
  1. .popularpost_list .jeg_thumb {
  2.     display : none ;
  3. }
  4.  
  5. .popularpost_list .popularpost_item:nth-child(1) {
  6.     color :red;
  7. }
  8.  
  9. .popularpost_item:first-child .jeg_post_title a:before, .popularpost_item:first-child:hover .jeg_post_title a:before{
  10.     background: #eee;
  11.     border-radius: 100%;
  12.     box-sizing: content-box;
  13.     content: attr(data-num);
  14.     font-size: 18px;
  15.     font-style: italic;
  16.     height: 24px;
  17.     left: 0;
  18.     right: auto;
  19.     line-height: 24px;
  20.     padding: 10px;
  21.     position: absolute;
  22.     text-align: center;
  23.     top: 0;
  24.     -webkit-transition: all .3s;
  25.     -o-transition: all .3s;
  26.     transition: all .3s;
  27.     width: 24px;
  28.     color : #eae ; /* number list color */
  29. }
  30.  
  31. .popularpost_item:first-child:hover .jeg_post_title a:before {
  32.     background: #eae; ; /* number list color when mouse hovered */
  33.     color : #fff ;
  34.    
  35. }
  36.  
  37. .popularpost_item:first-child .jeg_post_title {
  38.     font-size: 14px;
  39.     margin: 0 0 5px;
  40.     padding-right: 0;
  41.     font-weight: 400;
  42.     position: static;
  43. }
  44. .popularpost_item:first-child {
  45.     border-bottom: unset;
  46.     padding-bottom: 0;
  47.     padding-left: 60px;
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement