Deep Bot - Twitch Streamer Assistant

Deep Bot => Help/Support => Topic started by: BlackWolf on August 11, 2014, 01:11:50 PM

Title: Wrong currency on Donation alert
Post by: BlackWolf on August 11, 2014, 01:11:50 PM
Hello,

When people donate to my stream they enter the amount in Euro's. The donation page (http://deepbot.tv/donations/donate.php?s=blackwolfhowls) is setup like that as well. But when the donation alerts pop up on my screen they show the amount with a Pound sign instead. This is really confusing for my viewers and myself.

I checked the OBS css alert code, but I can't find anything related to changing it there. So I assume it must be a setting related to the Deepbot donation URL?

Hope this can be changed to Euro's.

Thanks.

Black Wolf
Title: Re: Wrong currency on Donation alert
Post by: ExpertsOnline on August 11, 2014, 09:32:36 PM
can you confirm the donation page link and the css you are using?
Title: Re: Wrong currency on Donation alert
Post by: BlackWolf on August 12, 2014, 01:04:00 AM
URL:

http://deepbot.tv/notifications/donationnotification3.htm?ccy=%C2%A3

CSS:

Code: [Select]
::-webkit-scrollbar {
  visibility: hidden;
}
body {
  background-color: rgba(0, 0, 0, 0);
  margin: 0px auto;
}

#donor-notification {
 width: 600px !important;
 height: 400px !important;
 background-color: transparent !important;
 background-image:url('http://i.imgur.com/pHyj3UW.png') !important;
}

#donor-notification .title {
 padding-top: 0px !important;
}
#donor-notification .message {
  visibility: hidden !important;
}
#donor-notification .amount {
font-family: Candara !important;
color: #ffd800 !important;
font-size: 72px !important;
font-weight: bold !important;
margin-right: 5px !important;
float: right !important;
margin-top: -180px !important;
width: 600px !important;
text-align: center !important;
-webkit-text-stroke: 3px black !important;
}
#donor-notification .donor {
font-family: Candara !important;
font-weight: bold !important;
color: #FF0000 !important;
font-size: 60px !important;
float: left !important;
margin-top: 220px !important;
width: 580px !important;
text-align: center !important;
-webkit-text-stroke: 2px white !important;
}
#donor-notification .header {
visibility: hidden !important;
}
body {
background-color: black;
}
Title: Re: Wrong currency on Donation alert
Post by: ExpertsOnline on August 12, 2014, 10:46:31 PM
yeah - simply change the URL to : http://deepbot.tv/notifications/donationnotification3.htm?ccy=%E2%82%AC
Title: Re: Wrong currency on Donation alert
Post by: BlackWolf on August 12, 2014, 11:25:53 PM
That simple huh? :) Thank you!