Deep Bot - Twitch Streamer Assistant
Deep Bot => Custom Notifications => Topic started by: RagingRedneck83 on March 10, 2015, 01:26:39 AM
-
I am having some trouble setting up my donation and follower alerts. I have my custom alerts made but cant seem to get them to show up. All i am getting is the check image. I would like to have my images show up.
Donation Image: (https://www.dropbox.com/s/1hq6cg3et2jd09o/donation.png?dl=0)
Follower Images: (https://www.dropbox.com/s/804vrqgxkmvpnzb/follower.png?dl=0)
-
Are you using the CSS layout provided and put your image in the background image line?
Are you using the following links?
Donation Notification (Below notification options available)
http://deepbot.tv/notifications/donationnotification2.htm
Follower Notification (Below notification options available)
http://deepbot.tv/notifications/follownotification1.htm?dur=10000 (Dur in the link indicates the duration the notification should stay on.)
-
this is the CSS that i amd using
#donor-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 800px;
height: 365px;
background-repeat: no-repeat;
background-image: https://www.dropbox.com/s/1hq6cg3et2jd09o/donation.png?dl=0;
}
#donor-notification .date {
margin-right: 40px;
padding-top: 43px;
text-align: right;
line-height: 20px;
vertical-align: top;
font-size: 20px;
font-family: Algerian;
text-shadow: 2px 2px 1px #000;
color: white;
}
#donor-notification .streamname {
margin-left: 34px;
padding-top: 28px;
text-align: left;
line-height: 26px;
vertical-align: top;
font-size: 24px;
font-family: Algerian;
text-shadow: 2px 2px 1px #FFF;
color: black;
}
#donor-notification .message {
margin-left: 38px;
float: left;
padding-top: 9px;
width: 70%;
line-height: 40px;
text-align: left;
vertical-align: top;
font-size: 20px;
font-family: Verdana;
color: black;
}
#donor-notification .amount {
float: right;
width: 21%;
padding-top: 17px;
text-align: left;
line-height: 26px;
vertical-align: top;
font-size: 30px;
font-family: Algerian;
text-shadow: 2px 2px 1px #fff;
color: black;
}
#donor-notification .donor {
margin-left: 520px;
padding-top: 147px;
text-align: left;
line-height: 28px;
vertical-align: middle;
font-size: 28px;
font-family: Comic Sans MS;
text-shadow: 2px 2px 1px #fff;
color: black;
}
along with the url below...
http://deepbot.tv/notifications/donationnotification2.htm (http://deepbot.tv/notifications/donationnotification2.htm)
and still my image wont show up only the default cheque.png shows up.
-
The url is correct, but your CSS was a bit off, I fixed it, and you can change it to how you like if you want:
#donor-notification {
width: 580px !important;
height: 110px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/cUG13bJ.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 {
position: absolute !important;
text-align: center !important;
margin-top: 10px !important;
margin-left: -100px !important;
margin-right: 100px !important;
width: 600px !important;
font-size: 24px !important;
font-weight: normal !important;
font-family: Arial !important;
color: white !important;
}
#donor-notification .donor {
position: absolute !important;
text-align: center !important;
margin-top: 10px !important;
margin-left: 20px !important;
margin-right: 100px !important;
width: 600px !important;
font-size: 24px !important;
font-weight: normal !important;
font-family: Arial !important;
color: white !important;
}
#donor-notification .title {
padding-top: 44px !important;
margin-left: 0px !important;
width: 100% !important;
float: left !important;
text-align: left !important;
}
-
I am also having the same issue with the follower alert
(http://i.imgur.com/e3cjHKs.png)
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 460px !important;
height: 240px !important;
border-radius: 00px !important;
background-image: url('http://i.imgur.com/e3cjHKs.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 88px !important;
margin-left: 35px !important;
text-align: center !important;
width: 380px !important;
font-size: 44px !important;
font-weight: normal !important;
font-family: impact !important;
color: #00cebb !important;
-webkit-text-stroke-width: 3px;
-webkit-text-stroke-color: #000000;
-webkit-text-fill-color: #fdbb30;
}
-
Here you go.
#follow-notification {
display: none;
position: absolute;
width: 580px !important;
height: 110px !important;
border-radius: 00px !important;
background-image: url('http://i.imgur.com/e3cjHKs.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 20px !important;
margin-left: 90px !important;
text-align: center !important;
width: 380px !important;
font-size: 34px !important;
font-weight: normal !important;
font-family: impact !important;
color: #00cebb !important;
-webkit-text-stroke-width: 3px;
-webkit-text-stroke-color: #000000;
-webkit-text-fill-color: #fdbb30;
}
-
i am now using xsplit and cant seem to get my follower and donation alerts to show up correctly.
(http://i.imgur.com/OYxCFgL.png) - Follower Alert
(http://i.imgur.com/MSYMZxI.png) - Donation Alert
Any help would be great.