Author Topic: Custom follower and donation images.  (Read 2999 times)

0 Members and 1 Guest are viewing this topic.

PxDGaming

  • Youngling
  • *
  • Posts: 5
  • Karma: +1/-0
    • View Profile
  • Twitch Name: PxDGaming
Custom follower and donation images.
« on: September 24, 2014, 07:07:20 AM »
Could I get some assistance in making these custom notifiers work.

This is the follower alert that I would like: http://imgur.com/0bPrSEm

And this is the donation alert: http://imgur.com/D9jJ2ER

Also a silly question about donation setup: I can't go into options for donations at all - I know it's a VIP feature which I have at the moment so just curious if it's not working?

Thanks in advance!

emrerocky

  • Advisor
  • Councilor
  • **
  • Posts: 1240
  • Karma: +163/-8
    • View Profile
    • emrerocky's Website
  • Twitch Name: emrerocky
Re: Custom follower and donation images.
« Reply #1 on: September 24, 2014, 07:12:23 AM »
To see more info about donation functionality, visit this page on the forums: http://deepbot.deep.sg/forums/index.php?topic=408.0

-emrerocky

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom follower and donation images.
« Reply #2 on: September 24, 2014, 01:46:42 PM »
Follows

Link : http://deepbot.tv/notifications/follownotification1.htm
Width: 510
Height: 130

CSS Code
Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 500px !important;
height: 125px !important;
border-radius: 00px !important;
background-image: url('http://i.imgur.com/0bPrSEm.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 42px !important;
margin-left: 100px !important;
text-align: center !important;
width: 380px !important;
font-size: 32px !important;
font-weight: bold !important;
font-family: impact !important;
color: #00cebb !important;
-webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
    -webkit-text-fill-color: #FFFFFF;


}

Preview:



Donation

Link : http://deepbot.tv/notifications/donationnotification2.htm
Width: 510
Height: 130

CSS Code:
Code: [Select]
#donor-notification {
width: 500px !important;
height: 125px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/D9jJ2ER.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: 32px !important;
font-family: Impact !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 32px !important;
font-family: impact !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: 67px !important;
margin-left: 100px !important;
width: 76% !important;
float: left !important;
text-align: center !important;
}



Preview:


PxDGaming

  • Youngling
  • *
  • Posts: 5
  • Karma: +1/-0
    • View Profile
  • Twitch Name: PxDGaming
Re: Custom follower and donation images.
« Reply #3 on: September 24, 2014, 02:19:23 PM »
Awesome work - When displaying the donation image however there are scrolling bars below the image and on the right hand side of the image.

Follower image worked perfectly!

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom follower and donation images.
« Reply #4 on: September 24, 2014, 03:00:18 PM »
You can use this CSS instead to remove the scroll bars:

CSS Code:
Code: [Select]
#donor-notification {
width: 500px !important;
height: 125px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/D9jJ2ER.png') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
overflow: hidden !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: 32px !important;
font-family: Impact !important;
font-weight: normal !important;
text-shadow: 3px 4px 1px #000 !important;
color: white !important;
}
#donor-notification .donor {
font-size: 32px !important;
font-family: impact !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: 67px !important;
margin-left: 100px !important;
width: 76% !important;
float: left !important;
text-align: center !important;
}