Author Topic: CSS for Donation and Followers  (Read 1710 times)

0 Members and 1 Guest are viewing this topic.

RussianJ

  • Youngling
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
  • Twitch Name: RussianJ_TEST
CSS for Donation and Followers
« on: March 27, 2015, 09:27:32 AM »
Looking for a bit of help with the CSS.

Image for Follows: http://i.imgur.com/PWpmjoi.png

Image for Donations: http://i.imgur.com/ELHn2ua.png

Thanks in advance!

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: CSS for Donation and Followers
« Reply #1 on: March 27, 2015, 09:56:44 AM »
If you need any adjustments, let me know. :3

Requested by: RussianJ

Follower:

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

CSS Code:
Code: [Select]
#follow-notification {
   display: none;
   position: absolute;
   width: 580px !important;
   height: 110px !important;
   border-radius: 10px;
   background-image: url('http://i.imgur.com/PWpmjoi.png') !important;
   background-repeat: no-repeat;
}
#follow-notification .followname {
   margin-top: 15px !important;
   margin-left: 150px !important;
   text-align: center !important;
   width: 300px !important;
   font-size: 38px !important;
   font-weight: bold !important;
   font-family: impact !important;
   color: gold !important;
   -webkit-text-stroke: 1px;
   -webkit-text-stroke-color: #000
}

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





Donation:

Link: http://deepbot.tv/notifications/donationnotification2.htm
Width: 600
Height: 200

CSS Code:
Code: [Select]
#donor-notification {
position: absolute;
left: 0px !important;
width: 580px !important;
height: 110px !important;
background-repeat: no-repeat;
background-size: contain !important;
background-image: url('http://i.imgur.com/ELHn2ua.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: 20px !important;
margin-left: -120px !important;
width: 150px !important;
text-align: center !important;
line-height: 26px !important;
font-size: 32px !important;
   font-family: impact !important;
   color: gold !important;
   -webkit-text-stroke: 2px;
   -webkit-text-stroke-color: #000
}
#donor-notification .donor {
position: absolute;
margin-left: -60px !important;
margin-top: 15px !important;
width: 250px !important;
text-align: center !important;
vertical-align: initial !important;
font-size: 32px !important;
   font-family: impact !important;
   color: gold !important;
   -webkit-text-stroke: 2px;
   -webkit-text-stroke-color: #000
}

.amount:before {

content: ' - ' !important;
width: 10px !important;
margin-left: -20px !important;
margin-top: 500px !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

RussianJ

  • Youngling
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
  • Twitch Name: RussianJ_TEST
Re: CSS for Donation and Followers
« Reply #2 on: April 01, 2015, 12:15:49 PM »
Awesome, thanks so much mate!