Author Topic: follower and donation notifications  (Read 1876 times)

0 Members and 1 Guest are viewing this topic.

bomBursc2

  • Youngling
  • *
  • Posts: 16
  • Karma: +0/-0
    • View Profile
  • Twitch Name: twitch.tv/dartbombur
follower and donation notifications
« on: October 30, 2014, 06:30:32 AM »
hey experts i want to use this pic http://imgur.com/pXt39nr to donation and follower notification :)

emrerocky

  • Advisor
  • Councilor
  • **
  • Posts: 1240
  • Karma: +163/-8
    • View Profile
    • emrerocky's Website
  • Twitch Name: emrerocky
Re: follower and donation notifications
« Reply #1 on: October 30, 2014, 09:54:18 AM »
Tell me what you think!

Follows

Link: http://deepbot.tv/notifications/follownotification1.htm
Width: 851
Height: 315

CSS Code:
Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 851px !important;
height: 315px !important;
border-radius: 1px!important;
background-image: url('https://i.imgur.com/pXt39nr.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 60px !important;
margin-left: 70px !important;
text-align: center !important;
width: 440px !important;
font-size: 90px !important;
font-weight: normal !important;
font-family: Algerian !important;
color: #FFFFFF !important;
-webkit-text-stroke: 0.5px;
-webkit-text-stroke-color: #000
}

Preview:


Donations

Link: http://deepbot.tv/notifications/donationnotification2.htm
Width: 851
Height: 315

CSS Code:
Code: [Select]
#donor-notification {
width: 851px !important;
height: 315px !important;
background-color: transparent !important;
background-image:url('https://i.imgur.com/pXt39nr.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: 65px !important;
font-family: Algerian !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 65px !important;
font-family: Algerian !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor:after {
content: ' - ';
}
#donor-notification .title {
padding-top: 90px !important;
margin-left: 0px !important;
width: 100% !important;
float: left !important;
text-align: center !important;
}

Preview:

bomBursc2

  • Youngling
  • *
  • Posts: 16
  • Karma: +0/-0
    • View Profile
  • Twitch Name: twitch.tv/dartbombur
Re: follower and donation notifications
« Reply #2 on: October 31, 2014, 03:54:25 AM »
im so stupid, i forgot about writing about what it should been on them -_-

on follower it should say: thank name for Joining BomBur crew

on donation: thank name for your donation

emrerocky

  • Advisor
  • Councilor
  • **
  • Posts: 1240
  • Karma: +163/-8
    • View Profile
    • emrerocky's Website
  • Twitch Name: emrerocky
Re: follower and donation notifications
« Reply #3 on: October 31, 2014, 09:27:06 AM »
Follows CSS Code:
Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 851px !important;
height: 315px !important;
border-radius: 1px!important;
background-image: url('https://i.imgur.com/pXt39nr.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 20px !important;
margin-left: 200px !important;
text-align: center !important;
width: 440px !important;
font-size: 45px !important;
font-weight: normal !important;
font-family: Algerian !important;
color: #FFFFFF !important;
-webkit-text-stroke: 0.5px;
-webkit-text-stroke-color: #000
}
#follow-notification .followname:before {
content: 'Thanks ';
font-family: !important;
font-size: 45px !important
}
#follow-notification .followname:after {
content: ' for Joining BomBur crew';
font-family: !important;
font-size: 45x !important
}

Donations CSS Code:
Code: [Select]
#donor-notification {
width: 851px !important;
height: 315px !important;
background-color: transparent !important;
background-image:url('https://i.imgur.com/pXt39nr.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: 45px !important;
font-family: Algerian !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 45px !important;
font-family: Algerian !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor:after {
content: ' for your donation of ';
}
#donor-notification .donor:before {
content: 'Thanks ';
}
#donor-notification .title {
padding-top: 90px !important;
margin-left: 0px !important;
width: 100% !important;
float: left !important;
text-align: center !important;
}