Author Topic: Custom Donation Notification  (Read 1433 times)

0 Members and 1 Guest are viewing this topic.

DanSizn

  • Youngling
  • *
  • Posts: 35
  • Karma: +0/-0
    • View Profile
  • Twitch Name: DanSizn
Custom Donation Notification
« on: April 21, 2017, 01:02:58 PM »
I am wanting to use my image/  http://i.imgur.com/FrmTgl0.png and just use White Text to put the name and the amount the person donated a long with a space for any text that they might post with it.

Thank you

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: Custom Donation Notification
« Reply #1 on: April 22, 2017, 11:29:56 AM »
Requested by: DanSizn

Donation:

Link: http://deepbot.tv/notifications/donationnotification2.htm
Width: 650
Height: 150

CSS Code:
Code: [Select]
body {
    background-color: transparent;
    color: white;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}

#donor-notification {
    position: absolute;
    top: 0px;
    left: 0px !important;
    width: 500px !important;
    height: 100px !important;
    background-image: url(http://i.imgur.com/FrmTgl0.png) !important;
    background-repeat: no-repeat;
    background-size: contain !important;
}
#donor-notification .header {
visibility: hidden !important;
}
#donor-notification .streamname {
    float: left;
    visibility: hidden;
}
#donor-notification .message {
position: absolute;
margin-top: 50px !important;
margin-left: 150px !important;
width: 500px !important;
text-align: left !important;
font-weight: normal !important;
font-size: 20px !important;
font-family: Norwester !important;
color: white !important;
text-transform: capitalize !important;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .amount {
position: absolute;
margin-top: -20px !important;
margin-left: -180px !important;
width: 300px !important;
text-align: center !important;
font-weight: bold !important;
font-size: 30px !important;
font-family: Norwester !important;
color: white !important;
text-transform: capitalize !important;
background: ;
-webkit-text-stroke-color: black !important;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .donor {
position: absolute;
margin-top: -20px !important;
margin-left: -80px !important;
width: 300px !important;
text-align: center !important;
font-weight: bold !important;
font-size: 30px !important;
font-family: Norwester !important;
color: white !important;
text-transform: capitalize !important;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .title {
    padding-top: 30px;
    width: 100%;
    float: left;
    text-align: center;
}
#donor-notification .messagebox {
    width: 100%;
    text-align: center;
}

Preview: (If there is a black background, it is just my background.)

Old Name: RepentGamingTV
Twitch: Here

Need help ASAP?
Join Deepbot's Discord: Discord.Deepbot.tv
Deepbot's Twitter: @DeepSupport

DanSizn

  • Youngling
  • *
  • Posts: 35
  • Karma: +0/-0
    • View Profile
  • Twitch Name: DanSizn
Re: Custom Donation Notification
« Reply #2 on: April 23, 2017, 04:03:07 PM »
Thank you so much.