Author Topic: Custom notifications  (Read 1878 times)

0 Members and 1 Guest are viewing this topic.

MrL3x

  • Youngling
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
  • Twitch Name: mrl3x
Custom notifications
« on: September 16, 2014, 05:58:24 AM »
Hello all!

I've been trying to edit the notifications for followers and donations, but I'm failing badly and was hoping someone would be able to help!

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

http://i.imgur.com/5nccBnr.png

For the donations I would like to see the name and amount in £'s, if possible.

Thanks in advance!

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom notifications
« Reply #1 on: September 16, 2014, 01:29:32 PM »
Follows

Link : http://deepbot.tv/notifications/follownotification.htm
Width: 590
Height: 120

CSS Code
Code: [Select]
#follow-notification {
position: absolute !important;
width: 590px !important;
height: 120px !important;
background-color: transparent !important;
border-radius: 10px !important;
background-image: url('http://i.imgur.com/uvwaYra.png') !important;
background-repeat: no-repeat !important;
}
#follow-notification .leftimage {
position: absolute !important;
visibility: hidden !important;
}
#follow-notification .followname {
position: absolute !important;
margin-left: 0px  !important;
padding-top: 45px !important;
text-align: center !important;
width: 580px !important;
font-size: 32px !important;
font-family: Algerian !important;
text-shadow: 2px 2px 1px #000 !important;
color: #ffffff !important;
}

#follow-notification .header {
visibility: hidden !important;
}

Preview:


Donation

Link : http://deepbot.tv/notifications/donationnotification2.htm?top=1&ccy=%C2%A3
Width: 590
Height: 120

CSS Code:
Code: [Select]
#donor-notification {
width: 580px !important;
height: 120px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/5nccBnr.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 {
font-size: 34px !important;
font-family: Calbri !important;
font-weight: bold !important;
text-shadow: 2px 2px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 34px !important;
font-family: Calbri !important;
font-weight: bold !important;
text-shadow: 2px 2px 1px #000 !important;
color: white !important;
}
#donor-notification .donor:after {
content: ' - ';
}
#donor-notification .title {
padding-top: 50px;
width: 100%;
float: left;
text-align: center;
}


Preview:

MrL3x

  • Youngling
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
  • Twitch Name: mrl3x
Re: Custom notifications
« Reply #2 on: September 16, 2014, 05:31:36 PM »
Thanks, that works perfectly! Much appreciated.