Deep Bot - Twitch Streamer Assistant
Deep Bot => Custom Notifications => Topic started by: PxDGaming on September 24, 2014, 07:07:20 AM
-
Could I get some assistance in making these custom notifiers work.
This is the follower alert that I would like: http://imgur.com/0bPrSEm
And this is the donation alert: http://imgur.com/D9jJ2ER
Also a silly question about donation setup: I can't go into options for donations at all - I know it's a VIP feature which I have at the moment so just curious if it's not working?
Thanks in advance!
-
To see more info about donation functionality, visit this page on the forums: http://deepbot.deep.sg/forums/index.php?topic=408.0
-emrerocky
-
Follows
Link : http://deepbot.tv/notifications/follownotification1.htm
Width: 510
Height: 130
CSS Code
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 500px !important;
height: 125px !important;
border-radius: 00px !important;
background-image: url('http://i.imgur.com/0bPrSEm.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 42px !important;
margin-left: 100px !important;
text-align: center !important;
width: 380px !important;
font-size: 32px !important;
font-weight: bold !important;
font-family: impact !important;
color: #00cebb !important;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #000000;
-webkit-text-fill-color: #FFFFFF;
}
Preview:
(http://puu.sh/bLFak/cf6d959642.jpg)
Donation
Link : http://deepbot.tv/notifications/donationnotification2.htm
Width: 510
Height: 130
CSS Code:
#donor-notification {
width: 500px !important;
height: 125px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/D9jJ2ER.png') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
}
#donor-notification .header {
position: absolute !important;
visibility: hidden !important;
}
#donor-notification .streamname {
visibility: hidden !important;
}
#donor-notification .message {
visibility: hidden !important;
}
#donor-notification .amount {
font-size: 32px !important;
font-family: Impact !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 32px !important;
font-family: impact !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor:after {
content: ' - ';
}
#donor-notification .title {
padding-top: 67px !important;
margin-left: 100px !important;
width: 76% !important;
float: left !important;
text-align: center !important;
}
Preview:
(http://puu.sh/bLFmb/8299e6d4c9.jpg)
-
Awesome work - When displaying the donation image however there are scrolling bars below the image and on the right hand side of the image.
Follower image worked perfectly!
-
You can use this CSS instead to remove the scroll bars:
CSS Code:
#donor-notification {
width: 500px !important;
height: 125px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/D9jJ2ER.png') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
overflow: hidden !important;
}
#donor-notification .header {
position: absolute !important;
visibility: hidden !important;
}
#donor-notification .streamname {
visibility: hidden !important;
}
#donor-notification .message {
visibility: hidden !important;
}
#donor-notification .amount {
font-size: 32px !important;
font-family: Impact !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 32px !important;
font-family: impact !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor:after {
content: ' - ';
}
#donor-notification .title {
padding-top: 67px !important;
margin-left: 100px !important;
width: 76% !important;
float: left !important;
text-align: center !important;
}