Author Topic: Custom Donation Notification  (Read 2479 times)

0 Members and 1 Guest are viewing this topic.

Hanger84

  • Youngling
  • *
  • Posts: 11
  • Karma: +0/-0
    • View Profile
  • Twitch Name: hanger84
Custom Donation Notification
« on: September 21, 2014, 05:25:33 AM »
I tried with the help of a friend to make my own CSS for the donation notification but failed at it because I'm still new to the Deep Bot CSS. If anyone could help me with this, I would be grateful.

Here is what my notification looks like in Twitch Alerts: http://i.imgur.com/XlY0WiV.jpg

I want the text placement the same, with the Orbitron font in white with the black drop shadow but not sure how to do it.

Here's my animation/image: http://i.imgur.com/jo9NKPy.gif

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom Donation Notification
« Reply #1 on: September 21, 2014, 06:39:21 PM »

Donation

Link : http://deepbot.tv/notifications/donationnotification2.htm
Width: 650
Height: 500

CSS Code:
Code: [Select]
#donor-notification {
width: 600px !important;
height: 500px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/jo9NKPy.gif') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
background-position-x: center !important;

}


#donor-notification .header {
position: absolute !important;
visibility: hidden !important;
}

#donor-notification .streamname {
visibility: hidden !important;
}

#donor-notification .message {
font-size: 20px !important;
font-family: Orbitron !important;
color: #ffffff !important;
max-width: 600px !important;
text-shadow: 3px 3px 1px #000 !important;
margin-left: auto !important;
margin-right: auto !important;
}
#donor-notification .amount {
font-size: 26px !important;
font-family: Orbitron !important;
font-weight: normal !important;
text-shadow: 3px 3px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 26px !important;
font-family: Orbitron !important;
font-weight: normal !important;
text-shadow: 3px 3px 1px #000 !important;
color: white !important;
}
#donor-notification .donor:after {
content: ' donated ';
}
#donor-notification .title {
padding-top: 314px !important;
margin-left: 0px !important;
width: 100% !important;
float: left !important;
text-align: center !important;
}


Preview:


Hanger84

  • Youngling
  • *
  • Posts: 11
  • Karma: +0/-0
    • View Profile
  • Twitch Name: hanger84
Re: Custom Donation Notification
« Reply #2 on: September 22, 2014, 09:28:41 AM »
Thank you very much Experts for the help, I greatly appreciate and very much love the program you created.