Deep Bot - Twitch Streamer Assistant

Deep Bot => Custom Notifications => Topic started by: ERGaming on August 17, 2014, 09:24:16 AM

Title: help: can't align .donor name
Post by: ERGaming on August 17, 2014, 09:24:16 AM
hey guys i can't for the love of god get the donor name to align where i want it on the screen.

no matter what margin or padding i use in the css file, the name is always too low... I want it right above my image in the center, but the name is always in the lower right quadrant of the overlay.

Code: [Select]
#donor-notification {
display: none;
position: absolute;
top: 0px;
left: 0px;
width: 1920px !important;
height: 1080px !important;
border-radius: 10px;
background-image: url('http://i.imgur.com/WdQvTrr.png') !important;
background-repeat: no-repeat;
}
#donor-notification .amount {
margin-top: 585px !important;
margin-left: 0px !important;
text-align: center !important;
width: 1920px !important;
font-size: 60px !important;
font-weight: bold !important;
font-family: yukarimobile !important;
color: #FFFFFF !important;
-webkit-text-stroke: 3px;
-webkit-text-stroke-color: #000000;

#donor-notification .donor {
margin-top: 425px !important;
margin-left: 0px !important;
text-align: center !important;
width: 1920px !important;
font-size: 60px !important;
font-weight: bold !important;
font-family: yukarimobile !important;
color: #FFFFFF !important;
-webkit-text-stroke: 3px;
-webkit-text-stroke-color: #000000;
}
#donor-notification .date {
visibiliy: hidden;
display: none;
}
#donor-notification .streamname {
visibiliy: hidden;
display: none;
}
#donor-notification .message {
visibiliy: hidden;
display: none;
}
Title: Re: help: can't align .donor name
Post by: ERGaming on August 17, 2014, 10:28:18 AM
nevermind...

fixed it by adding:

position: fixed;
    top: 30px;
    right: 5px;

to the .donor bracket