Hisabeel

Changing the opacity of posts

Oct 3rd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.25 KB | None | 0 0
  1. Simples, apenas procure pelo seguinte código:
  2.     #entry{
  3.     margin:7px;
  4.     float:left;
  5.     font-size:10px;
  6.     line-height:13px;
  7.     text-transform:normal;
  8.     width:246px;
  9.     padding:14px;
  10.     background:#fff;
  11.     border:1px solid #eee;
  12.     }
  13.  
  14.  
  15. Tendo o código, é só acrescenter: opacity:0.1px (entre 0.0 e 1.0)
  16. O seu código ficará assim (o código está mais chegado para a frente):
  17.     #entry{
  18.     margin:7px;
  19.     float:left;
  20.     font-size:10px;
  21.     line-height:13px;
  22.     text-transform:normal;
  23.                     opacity:0.8;
  24.     width:246px;
  25.     padding:14px;
  26.     background:#fff;
  27.     border:1px solid #eee;
  28.     }
  29.  
  30.  
  31.  
  32. x ----------------------------------------------------------------------------------------------------------------------------------- x
  33.  
  34.  
  35. Simple, just search for the following code:
  36.     #entry{
  37.     margin:7px;
  38.     float:left;
  39.     font-size:10px;
  40.     line-height:13px;
  41.     text-transform:normal;
  42.     width:246px;
  43.     padding:14px;
  44.     background:#fff;
  45.     border:1px solid #eee;
  46.     }
  47.  
  48.  
  49. Having the code, just add: opacity:0.1px (between 0.0 e 1.0)
  50. Your code will look like this (the code is closer to the front):
  51.     #entry{
  52.     margin:7px;
  53.     float:left;
  54.     font-size:10px;
  55.     line-height:13px;
  56.     text-transform:normal;
  57.                     opacity:0.8;
  58.     width:246px;
  59.     padding:14px;
  60.     background:#fff;
  61.     border:1px solid #eee;
  62.     }
Add Comment
Please, Sign In to add comment