Author Topic: Wrong currency on Donation alert  (Read 3425 times)

0 Members and 1 Guest are viewing this topic.

BlackWolf

  • Youngling
  • *
  • Posts: 30
  • Karma: +0/-0
    • View Profile
  • Twitch Name: BlackWolfHowls
Wrong currency on Donation alert
« 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

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Wrong currency on Donation alert
« Reply #1 on: August 11, 2014, 09:32:36 PM »
can you confirm the donation page link and the css you are using?

BlackWolf

  • Youngling
  • *
  • Posts: 30
  • Karma: +0/-0
    • View Profile
  • Twitch Name: BlackWolfHowls
Re: Wrong currency on Donation alert
« Reply #2 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;
}

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Wrong currency on Donation alert
« Reply #3 on: August 12, 2014, 10:46:31 PM »

BlackWolf

  • Youngling
  • *
  • Posts: 30
  • Karma: +0/-0
    • View Profile
  • Twitch Name: BlackWolfHowls
Re: Wrong currency on Donation alert
« Reply #4 on: August 12, 2014, 11:25:53 PM »
That simple huh? :) Thank you!