Author Topic: Follower and Donator Notification CLR  (Read 2396 times)

0 Members and 1 Guest are viewing this topic.

syndrome208

  • Padawan
  • **
  • Posts: 78
  • Karma: +0/-0
    • View Profile
  • Twitch Name: syndrome208
Follower and Donator Notification CLR
« on: August 05, 2014, 01:26:06 PM »
Here are the 2 images I would like to use 1 for follower and one for donation.

Follower: Can just put the name directly below the text and centered.

Donations:  Same as follower but just Name - Amount  centered below txt


thanks ahead of time appreciate all your work!!

syndrome208

  • Padawan
  • **
  • Posts: 78
  • Karma: +0/-0
    • View Profile
  • Twitch Name: syndrome208
Re: Follower and Donator Notification CLR
« Reply #1 on: August 05, 2014, 07:42:44 PM »
And can we adjust my donation page to use this paypal account syndrome1208@gmail.com

Thanks

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Follower and Donator Notification CLR
« Reply #2 on: August 05, 2014, 11:51:23 PM »
Link : http://deepbot.tv/notifications/donationnotification2.htm

CSS Code:
Code: [Select]
#donor-notification {
 width: 640px !important;
 height: 75px !important;
 background-color: transparent !important;
 background-image:url('http://i.imgur.com/nvRvgpr.png') !important;
}

#donor-notification .title {
 padding-top: 0px !important;
}
#donor-notification .message {
  visibility: hidden !important;
}
#donor-notification .amount {
font-family: Algerian;
color: #24c820 !important;
font-size: 21px !important;
}
#donor-notification .donor {
font-family: Algerian;
color: #24c820 !important;
font-size: 21px !important;
}
#donor-notification .header {
color: #3FFA00 !important;
font-size: 1px !important;
font-family: Algerian !important;
visibility: hidden !important;
}
#donor-notification .title {
margin-top: 38px !important;
padding-left: 10px !important;
}

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Follower and Donator Notification CLR
« Reply #3 on: August 05, 2014, 11:57:03 PM »
Link : http://deepbot.tv/notifications/follownotification1.htm?dur=10000

CSS
Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 640px !important;
height: 750px !important;
border-radius: 10px;
background-image: url('http://i.imgur.com/8jNO7M2.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 10px !important;
margin-left: 0px !important;
text-align: center !important;
width: 640px !important;
font-size: 21px !important;
font-weight: bold !important;
font-family: Verdana !important;
color: #24c820 !important;
-webkit-text-stroke: 1px;
-webkit-text-stroke-color: white;
}

syndrome208

  • Padawan
  • **
  • Posts: 78
  • Karma: +0/-0
    • View Profile
  • Twitch Name: syndrome208
Re: Follower and Donator Notification CLR
« Reply #4 on: August 06, 2014, 06:15:21 AM »
Thank you very much Experts!!