Advertisement
Guest User

Untitled

a guest
Dec 18th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. /*
  2. A simple CSS script that will remove the gift giving event menu from your den, so that visitors will be unable to send you gifts.
  3.  
  4. (C) ranuncudahlia#1639 on Wolvden, feel free to incorporate within your own content. No credit needed, but greatly appreciated in order to help others find it should they want to use it as well.
  5.  
  6. If you would like to hide these dialogs locally on your computer, you can either use a userstyles browser feature or extension and copy-paste the CSS below, or you can utilize any adblocker or other extension/tool which allows you to identify specific components of a webpage to hide. Utilizing the adblocker method, simply include in your blacklist "###frmDecemberGifting" and "###main > .mt-3.text-center.border.bg-light.card" Double-check your add-ons requirements for syntax to make sure it is correctly labeled. Alternatively, if it has a "picker" tool, simply try to pick those divs using the tool.
  7. */
  8.  
  9. /*
  10. Hides the "You have already left a gift for this member!" dialog from visitors.
  11. Also hides the "# gifts have been left for you!" dialog from you when viewing your own den.
  12. */
  13. #main > div.card.bg-light.border.text-center.mt-3 {
  14. display: none!important;
  15. }
  16.  
  17. /* Hides the original gift giving dialog from visitors.*/
  18. #frmDecemberGifting {
  19. display: none!important;
  20. }
  21.  
  22. /*
  23. To include on your den, simply copy-paste the CSS stylesheet into your den source code. For instructions on how to do that, refer back to the original forum post: https://www.wolvden.com/chatter/topic/236875
  24. Copy-paste the following:
  25. <link rel="stylesheet" type="text/css" href="https://ranuncudahlia.neocities.org/wolvdencss/nogifting.css">
  26. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement