Author Topic: Custom CSS Help! (Donation, Follow, GameWisp Alerts)  (Read 3762 times)

0 Members and 1 Guest are viewing this topic.

grownathome

  • Youngling
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
  • Twitch Name: GrownAtHome
Custom CSS Help! (Donation, Follow, GameWisp Alerts)
« on: October 19, 2016, 06:32:20 AM »
I would love some help getting these images to work as notifications!


I have included a link to my graphics, as well as the questions Repent asked in his Custom CSS post.

Thank you in advance for any of your hard work!!

http://imgur.com/a/5r9Xo

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: Custom CSS Help! (Donation, Follow, GameWisp Alerts)
« Reply #1 on: October 19, 2016, 09:21:06 AM »
Requested by: grownathome

Follower:

Link: http://deepbot.tv/notifications/follownotification1.htm?dur=10000
Width: 580
Height: 110

CSS Code:
Code: [Select]
body {
background-color: transparent;
color: white;
}

#follow-notification {
display: none;
position: absolute !important;
top: 0px !important;
left: 0px !important;
width: 580px !important;
height: 110px !important;
background-image: url(http://i.imgur.com/2t7SIgP.png) !important;
background-repeat: no-repeat !important;
background-size: cover !important;
}

#follow-notification .followname {
  margin-left: 60px !important;
  margin-top: 55px !important;
  width: 455px;
  text-align: center;
  line-height: 36px !important;
  font-size: 32px !important;
  font-family: Impact !important;
  font-weight: normal !important;
  text-shadow: 2px 2px 1px #000 !important;
  text-transform: capitalize !important;
  color: white !important;
  -webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
}

#follow-notification .header {
display: none !important;
}

#follow-notification .followname:after {
content: '' !important;
}

Preview: (If there is a black background, it is just my background.)



Donation:

Link: http://deepbot.tv/notifications/donationnotification2.htm?dur=10000
Width: 580
Height: 110

CSS Code:
Code: [Select]
body {
    background-color: transparent;
    color: white;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}

#donor-notification {
position: absolute;
top: 0px !important;
left: 0px !important;
width: 580px !important;
height: 110px !important;
background-repeat: no-repeat;
background-size: contain !important;
background-image: url(http://i.imgur.com/wrcSh9r.png) !important;
overflow: ahidden !important;
}
#donor-notification .header {
visibility: hidden !important;
}
 
#donor-notification .date {
visibility: hidden !important;
}
 
#donor-notification .streamname {
visibility: hidden !important;
}
 
#donor-notification .message {
visibility: hidden !important;
}
#donor-notification .amount {
position: absolute;
margin-top: 30px !important;
margin-left: -120px !important;
width: 200px !important;
text-align: center !important;
font-weight: normal !important;
font-size: 24px !important;
font-family: Impact !important;
color: white !important;
text-transform: capitalize !important;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .donor {
position: absolute;
margin-top: 30px !important;
margin-left: -210px !important;
width: 500px !important;
text-align: center !important;
font-weight: normal !important;
font-size: 24px !important;
font-family: Impact !important;
color: white !important;
text-transform: capitalize !important;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}

.donor:before {
content: '';
}
 
.donor:after {
content: '';
}

.amount:after{
content: '';
}
#donor-notification .messagebox {
    width: 100%;
    text-align: center;
}

Preview: (If there is a black background, it is just my background.)



Gamewisp Sub:

Link: http://deepbot.tv/notifications/gwnotification.htm
Width: 580
Height: 110

CSS Code:
Code: [Select]
::-webkit-scrollbar {
    visibility: hidden !important;
}

body {
  background-color: transparent;
  color: black;
}
 
#sub-notification {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px !important;
  width: 580px !important;
  height: 110px !important;
  background-repeat: no-repeat;
  background-position-y: 0px;
  background-image: url(http://i.imgur.com/HQc4XcF.png) !important;
}
 
#sub-notification .subname {
  margin-left: 0px !important;
  padding-top: 55px !important;
  width: 400px !important;
  text-align: center;
  line-height: 36px !important;
  font-size: 24px !important;
  font-family: Impact !important;
  font-weight: normal !important;
  text-shadow: 2px 2px 1px #000 !important;
  text-transform: capitalize !important;
  color: white !important;
  -webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
}
 
#sub-notification .subtier {
visibility: hidden !important;
}
 
#sub-notification .submonths {
  position: absolute;
  top: 50px !important;
  margin-left: 150px !important;
  width: 455px;
  text-align: center;
  line-height: 42px !important;
  font-size: 24px !important;
  font-family: Impact !important;
  font-weight: normal !important;
  text-shadow: 1px 1px #000 !important;
  text-transform: capitalize !important;
  color: white !important;
  -webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
}
 
#sub-notification .newsubmsg {
visibility: hidden !important;
}
 
#sub-notification .submonths::after {
  content: ' months ';
}
 
#sub-notification .newsubmsg::after {
  content: '' !important;
}

#sub-notification .submonths::before{
  content: '';
}

#sub-notification .subname::after {
  content: '' !important;
}

#sub-notification .subtier::before {
  content: '' !important;
}

#sub-notification .subtier::after {
  content: '' !important;
}
 
#sub-notification .subamount {
visibility: hidden !important;
}

Preview: (If there is a black background, it is just my background.)

Old Name: RepentGamingTV
Twitch: Here

Need help ASAP?
Join Deepbot's Discord: Discord.Deepbot.tv
Deepbot's Twitter: @DeepSupport

grownathome

  • Youngling
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
  • Twitch Name: GrownAtHome
Re: Custom CSS Help! (Donation, Follow, GameWisp Alerts)
« Reply #2 on: October 19, 2016, 09:53:11 AM »
Thank you so much!