Author Topic: Donation Alert image changing  (Read 4441 times)

0 Members and 1 Guest are viewing this topic.

HayZ

  • Youngling
  • *
  • Posts: 23
  • Karma: +0/-0
    • View Profile
  • Twitch Name: iHayZ
Donation Alert image changing
« on: September 15, 2014, 09:10:25 AM »
Hi,

How do I go about changing my donation popup image?

Have it linked and everything but can't seem to change it.

Its this: http://i.imgur.com/zYGD7I3.png

Thanks in advance!

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Donation Alert image changing
« Reply #1 on: September 15, 2014, 11:13:48 AM »
Please can you specify what you want shown on the popup and its placement?

ps. moving this to the custom notifications thread.

HayZ

  • Youngling
  • *
  • Posts: 23
  • Karma: +0/-0
    • View Profile
  • Twitch Name: iHayZ
Re: Donation Alert image changing
« Reply #2 on: September 16, 2014, 12:29:07 AM »
Can't I change the placement in OBS itself? If not, I'd like it in the top middle around here: http://gyazo.com/a3ea4003735d107f66aee658df069773

I think just a nice fade-in will be ok :) nothing too fancy and Calibri font too.

Thanks a lot! You really are the best.

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Donation Alert image changing
« Reply #3 on: September 16, 2014, 02:28:53 AM »
I meant, what do you want written inside and in which order

Donor - Amount
Amount - Donor

HayZ

  • Youngling
  • *
  • Posts: 23
  • Karma: +0/-0
    • View Profile
  • Twitch Name: iHayZ
Re: Donation Alert image changing
« Reply #4 on: September 16, 2014, 06:22:06 AM »
Ah! Sorry :P

Can I have:
Donor - Amount

Thanks a lot! :D

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Donation Alert image changing
« Reply #5 on: September 16, 2014, 01:42:34 PM »
Donation

Link : http://deepbot.tv/notifications/donationnotification2.htm?top=1
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/zYGD7I3.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:

HayZ

  • Youngling
  • *
  • Posts: 23
  • Karma: +0/-0
    • View Profile
  • Twitch Name: iHayZ
Re: Donation Alert image changing
« Reply #6 on: September 17, 2014, 03:31:59 AM »
Hi again!

Sorry to bother you again, I have a slight problem with it.

Not sure whats gone wrong with it but it looks like this now: http://gyazo.com/8db0a92bcb509fb51df3447f7cae261a

Could I also get it to fade in and out instead of slide in?

If theres anything you can do, I'd appreciate it.
I need to learn this CSS stuff =/

Thanks again! <3
« Last Edit: September 17, 2014, 04:25:36 AM by HayZ »

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Donation Alert image changing
« Reply #7 on: September 17, 2014, 01:35:56 PM »
Apologies - was tired and missed a few !important tags.

Please use the below CSS. As for fade, simply remove the ?top=1 from the link

CSS Code
Code: [Select]
#donor-notification {
width: 580px !important;
height: 120px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/zYGD7I3.png') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
}


#donor-notification .header {
position: absolute !important;
visibility: hidden !important;
}

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

#donor-notification .message {
position: absolute !important;
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: ' - ' !important;
}
#donor-notification .title {
position: absolute !important;
padding-top: 50px !important;
width: 100% !important;
float: left !important;
text-align: center !important;
}

HayZ

  • Youngling
  • *
  • Posts: 23
  • Karma: +0/-0
    • View Profile
  • Twitch Name: iHayZ
Re: Donation Alert image changing
« Reply #8 on: September 19, 2014, 10:19:15 PM »
Thanks a lot!
Really appreciate this!