Author Topic: Custom Follower & Donator Giff CSS Help  (Read 1611 times)

0 Members and 1 Guest are viewing this topic.

HellbillyChaz

  • Youngling
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
  • Twitch Name: www.twitch.tv/hellbillychaz
Custom Follower & Donator Giff CSS Help
« 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

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom Follower & Donator Giff CSS Help
« Reply #1 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:

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: Custom Follower & Donator Giff CSS Help
« Reply #2 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

HellbillyChaz

  • Youngling
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
  • Twitch Name: www.twitch.tv/hellbillychaz
Re: Custom Follower & Donator Giff CSS Help
« Reply #3 on: December 13, 2014, 06:42:44 PM »
thanks alot!