Author Topic: Follower & Donation notifications  (Read 2770 times)

0 Members and 1 Guest are viewing this topic.

BlackWolf

  • Youngling
  • *
  • Posts: 30
  • Karma: +0/-0
    • View Profile
  • Twitch Name: BlackWolfHowls
Follower & Donation notifications
« on: July 28, 2014, 02:47:30 AM »
Alright, I'm hope I don't ask too much here, but I can't get the CSS to work properly and I tried multiple times. I'll provide 4 pictures, 2 examples of how I want it to look and two templates. Hope that is sufficient enough to get it at least close to the result I want.

Follower Example:


Follower Template:


Donation Example:


Donation Template:


Thanks!

Black Wolf

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Follower & Donation notifications
« Reply #1 on: July 28, 2014, 11:02:10 AM »
Here is the Follows:

Link: http://deepbot.tv/notifications/follownotification1.htm?dur=10000

CSS
Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 600px !important;
height: 400px !important;
border-radius: 10px;
background-image: url("http://i.imgur.com/ct5pGJs.png") !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 200px !important;
margin-left: 0px !important;
text-align: center !important;
width: 600px !important;
font-size: 46px !important;
font-weight: bold !important;
font-family: Verdana !important;
text-shadow: 2px 2px 1px #FFF !important;
color: #ff0000 !important;
-webkit-text-stroke: 2px;
-webkit-text-stroke-color: white;
}

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Follower & Donation notifications
« Reply #2 on: July 28, 2014, 11:19:25 AM »
Here is the donation:

Link : http://deepbot.tv/notifications/donationnotification3.htm?ccy=%C2%A3


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

#donor-notification .title {
 padding-top: 0px !important;
}
#donor-notification .message {
  visibility: hidden !important;
}
#donor-notification .amount {
font-family: Verdana !important;
color: #ffd800 !important;
font-size: 36px !important;
font-weight: bold !important;
margin-right: 5px !important;
float: right !important;
margin-top: -160px !important;
width: 600px !important;
text-align: center !important;
-webkit-text-stroke: 2px black !important;
}
#donor-notification .donor {
font-family: Verdana !important;
font-weight: bold !important;
color: #FF0000 !important;
font-size: 44px !important;
float: left !important;
margin-top: 240px !important;
width: 580px !important;
text-align: center !important;
-webkit-text-stroke: 2px white !important;
}
#donor-notification .header {
visibility: hidden !important;
}
body {
background-color: black;
}

BlackWolf

  • Youngling
  • *
  • Posts: 30
  • Karma: +0/-0
    • View Profile
  • Twitch Name: BlackWolfHowls
Re: Follower & Donation notifications
« Reply #3 on: July 29, 2014, 12:35:06 AM »
Awesome! Many thanks! 8)