Author Topic: help: can't align .donor name  (Read 1583 times)

0 Members and 1 Guest are viewing this topic.

ERGaming

  • Padawan
  • **
  • Posts: 52
  • Karma: +0/-0
    • View Profile
  • Twitch Name: EpicResetGaming
help: can't align .donor name
« 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;
}

ERGaming

  • Padawan
  • **
  • Posts: 52
  • Karma: +0/-0
    • View Profile
  • Twitch Name: EpicResetGaming
Re: help: can't align .donor name
« Reply #1 on: August 17, 2014, 10:28:18 AM »
nevermind...

fixed it by adding:

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

to the .donor bracket