Author Topic: Custom Donation Alert  (Read 1841 times)

0 Members and 1 Guest are viewing this topic.

skylatron

  • Youngling
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
  • Twitch Name: skylatron
Custom Donation Alert
« on: August 22, 2014, 09:09:11 AM »
I tried myself, and failed!

Here is the image:

http://i.imgur.com/sk6AJHy.png

Donor name and amount in the first box, message in the second. I can make some adjustments myself to fonts and whatnot, so don't worry about that.

Thank you!!

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom Donation Alert
« Reply #1 on: August 23, 2014, 08:14:07 AM »
Initial stab at it...

Link : http://deepbot.tv/notifications/donationnotification.htm

width: 630
height: 520

CSS Code
Code: [Select]
#donor-notification {
position: absolute;
left: 0px !important;
width: 630px !important;
height: 520px !important;
background-repeat: no-repeat;
background-size: none !important;
background-image: url('http://i.imgur.com/sk6AJHy.png') !important;
overflow: hidden !important;
}

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

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

#donor-notification .message {
position: absolute;
margin-left: 5px !important;
margin-top: 155px !important;
float: left !important;
height: 120px !important;
padding-top: 0px !important;
width: 264px !important;
line-height: 20px !important;
text-align: left !important;
vertical-align: top !important;
font-size: 19px !important;
font-family: Verdana !important;
color: white !important;
}
#donor-notification .amount {
position: absolute;
width: 264px !important;
margin-top: 40px !important;
margin-left: 0px !important;
padding-top: 0px !important;
text-align: center !important;
line-height: 26px !important;
vertical-align: top !important;
font-size: 30px !important;
font-family: Algerian !important;
text-shadow: 1px 1px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
position: absolute;
margin-left: 0px !important;
padding-top: 0px !important;
margin-top: 10px !important;
width: 264px !important;
text-align: center !important;
line-height: 28px !important;
vertical-align: initial !important;
font-size: 26px !important;
font-family: Algerian !important;
text-shadow: 1px 1px 1px #000 !important;
color: white !important;
}

Preview

skylatron

  • Youngling
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
  • Twitch Name: skylatron
Re: Custom Donation Alert
« Reply #2 on: August 23, 2014, 12:11:54 PM »
Perfect! That's precisely what I needed to work with - was initially just having problems getting everything in to the right place, and now I see what you did. Thank you much!!