Deep Bot - Twitch Streamer Assistant

Deep Bot => Custom Notifications => Topic started by: HellbillyChaz on December 12, 2014, 03:50:41 PM

Title: Custom Follower & Donator Giff CSS Help
Post by: HellbillyChaz on December 12, 2014, 03:50:41 PM
Hi i was wondering if anyone could help make this - http://imgur.com/IqvKZGj into custom follower and donation CSS Giff as i really dont have a clue where to start :) all i would like is one to WELCOME and one for DONATION (Amount) Prefer Bold White Font if possible

Thanks in advance
Chaz
Title: Re: Custom Follower & Donator Giff CSS Help
Post by: ExpertsOnline on December 13, 2014, 04:21:26 PM
Donation

Link: http://deepbot.tv/notifications/donationnotification2.htm
Width: 500
Height: 300

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

#donor-notification .title {
 position: absolute !important;
 padding-top: 0px !important;
}
#donor-notification .message {
  margin-top: 0px !important;
margin-left: 0px !important;
color: #FFF !important;
font-size: 21px !important;
width: 300px !important;
text-align: left !important;
visibility: hidden !important;
}
#donor-notification .amount {
float: left !important;
margin-top: -90px !important;
width: 100% !important;
font-family: Verdana !important;
font-weight: bold !important;
color: #FFF !important;
font-size: 38px !important;
-webkit-text-stroke: 2.5px;
-webkit-text-stroke-color: #000
}
#donor-notification .donor {
float: left !important;
margin-top: 40px !important;
width: 100% !important;
text-align: center;
font-family: Verdana !important;
font-weight: bold !important;
color: #FFF !important;
font-size: 38px !important;
-webkit-text-stroke: 2.5px;
-webkit-text-stroke-color: #000
}
#donor-notification .header {
float: left !important;
position: absolute !important;
color: #FFF !important;
font-size: 1px !important;
font-family: Algerian !important;
visibility: hidden !important;
}
#donor-notification .title {
float: left !important;
position: absolute !important;
margin-top: 0px !important;
margin-left: 0px !important;
padding-left: 0px !important;
}

Preview:
(http://puu.sh/dsGdR/0f37e0de2b.jpg)
Title: Re: Custom Follower & Donator Giff CSS Help
Post by: ExpertsOnline on December 13, 2014, 04:25:23 PM
Follow

Link : http://deepbot.tv/notifications/follownotification1.htm
Width: 600
Height: 300

Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 500px !important;
height: 300px !important;
border-radius: 0px!important;
background-image: url('http://i.imgur.com/IqvKZGj.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 00px !important;
margin-left: 0px !important;
text-align: center !important;
width: 500px !important;
font-size: 40px !important;
font-weight: bold !important;
font-family: Verdana !important;
color: #FFF !important;
-webkit-text-stroke: 1.5px;
-webkit-text-stroke-color: #000
}

Preview
(http://puu.sh/dsGmw/e0cee8874d.jpg)
Title: Re: Custom Follower & Donator Giff CSS Help
Post by: HellbillyChaz on December 13, 2014, 06:42:44 PM
thanks alot!