Author Topic: please make me new follower/donation image  (Read 2230 times)

0 Members and 1 Guest are viewing this topic.

classyassgamers

  • Youngling
  • *
  • Posts: 18
  • Karma: +0/-0
    • View Profile
  • Twitch Name: classyassgamers
please make me new follower/donation image
« on: December 17, 2014, 08:44:43 AM »
I have created some images for my donation and follower alerts. Can you please help me with the css and stuff? I am hoping to have the text from the follower/donation be white with a thick black outline. If that is not possible, just black text would work. I want the text to show next to the diamond on the white rectangle. Thank you for your help!

Donation Image
http://i.imgur.com/32YpJVt.png

Follower Image
http://i.imgur.com/hNMhRCN.png

classyassgamers

  • Youngling
  • *
  • Posts: 18
  • Karma: +0/-0
    • View Profile
  • Twitch Name: classyassgamers
Re: please make me new follower/donation image
« Reply #1 on: December 17, 2014, 10:42:52 AM »
By the way it has a transparent background and is a .png. I am hoping to keep the transparentbackground

ExpertsOnline

  • Creator
  • Councilor
  • *****
  • Posts: 2656
  • Karma: +289/-24
    • View Profile
  • Twitch Name: expertsonline
Re: please make me new follower/donation image
« Reply #2 on: December 19, 2014, 09:17:19 PM »
Link : http://deepbot.tv/notifications/follownotification1.htm
Width: 600
Height: 220

CSS Code:
Code: [Select]
#follow-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 600px !important;
height: 220px !important;
border-radius: 0px!important;
background-image: url('http://i.imgur.com/hNMhRCN.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
margin-top: 82px !important;
margin-left: 100px !important;
text-align: center !important;
width: 500px !important;
font-size: 58px !important;
font-family: Corbel !important;
font-weight: bold !important;
color: #FFF !important;
-webkit-text-stroke-width: 3.0px;
-webkit-text-stroke-color: #000;
text-shadow:3px 3px 5px #000;
     
}
#follow-notification .header {
visibility: hidden !important;
}

Preview:



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

Code:
Code: [Select]
#donor-notification {
width: 600px !important;
height: 220px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/32YpJVt.png') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
}


#donor-notification .header {
position: absolute !important;
visibility: hidden !important;
}

#donor-notification .streamname {
visibility: hidden !important;
}

#donor-notification .message {
visibility: hidden !important;
}
#donor-notification .amount {
font-size: 40px !important;
font-family: Corbel !important;
color: #FFF !important;
font-weight: bold !important;
-webkit-text-stroke-width: 2.5px;
-webkit-text-stroke-color: #000;
text-shadow:3px 3px 5px #000;
}
#donor-notification .donor {
font-size: 40px !important;
font-family: Corbel !important;
font-weight: bold !important;
color: #FFF !important;
-webkit-text-stroke-width: 2.5px;
-webkit-text-stroke-color: #000;
text-shadow:3px 3px 5px #000;
}
#donor-notification .donor:after {
content: ' - ';
}
#donor-notification .title {
padding-top: 125px !important;
padding-left: 120px !important;
width: 480px !important;
float: left !important;
text-align: center !important;
}

Preview:

classyassgamers

  • Youngling
  • *
  • Posts: 18
  • Karma: +0/-0
    • View Profile
  • Twitch Name: classyassgamers
Re: please make me new follower/donation image
« Reply #3 on: December 19, 2014, 11:59:30 PM »
Thank you for the help!