Advertisement
_Pandora

Remove Icon (Block Member/Friend Request)

Sep 16th, 2023 (edited)
841
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. /* Codes made by Pandora #144118 and Moses #95222
  2. Codes may be edited, used in commissions or for personal use
  3. Please do not remove credit
  4. */
  5.  
  6. /* REMOVE ICON (block member) */
  7. #player > tbody > tr:nth-child(3) > td:nth-child(1) > a {
  8.     font-size:0px;
  9.    
  10. }
  11.  
  12. #player > tbody > tr:nth-child(3) > td:nth-child(1) > a::after {
  13.     content:'Block Member';
  14.     font-size:14px;
  15. }
  16.  
  17. /* REMOVE ICON (friend request) */
  18. #player > tbody > tr:nth-child(3) > td:nth-child(2) > a {
  19.     font-size:0px;
  20.    
  21. }
  22.  
  23. #player > tbody > tr:nth-child(3) > td:nth-child(2) > a::after {
  24.     content:'Friend Request';
  25.     font-size:14px;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement