Author Topic: Need help with a 2 Computer Setup with Xsplit  (Read 884 times)

0 Members and 1 Guest are viewing this topic.

Shordy

  • Youngling
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Shordylein
Need help with a 2 Computer Setup with Xsplit
« on: September 13, 2016, 07:53:10 PM »
Hey Guys,
im running a two computer-setup and everything works fine. Except custom notifications. I use Xsplit to stream and i use my second pc for deepbot. I get the Notifications displayed, everything good. but if i want a custom Notification, ill use a css code and try it but its still the standard notification. How can i fix/change this?? Could u guys help me?

i use for example: deepbot.tv/notifications/donationnotification2.htm?ip=192.168.2.106 as URL and
#follow-notification {
display: none;
position: absolute;
left: 0px !important;
width: 650px !important;
height: 125px !important;
border-radius: 00px !important;
background-image: url('http://i.imgur.com/Vx3qSUw.png') !important;
background-repeat: no-repeat;

}
#follow-notification .followname {
position: absolute !important;
text-align: center !important;
margin-top: 5px !important;
margin-left: 10px !important;
width: 300px !important;
font-size: 30px !important;
font-weight: bold !important;
font-family: Century Gothic !important;
color: white !important;
text-transform: capitalize;
-webkit-text-fill-color: white;
-webkit-text-stroke-color: white;
-webkit-text-stroke-width: 0px;
overflow: ahidden !important;
}
 
.followname:after {
content: '' !important;
}

as CSS-Code... but it wont work

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: Need help with a 2 Computer Setup with Xsplit
« Reply #1 on: September 14, 2016, 04:12:20 AM »
So the problem isn't your fault at all, it is a simple thing that makes a difference between xSplit and OBS. The difference is, xSplits loves " (double quotes) while OBS prefers ' (single quotes) in the CSS. Here is the fixed CSS for xSplit:

Code: [Select]
#follow-notification {
display: none;
position: absolute;
left: 0px !important;
width: 650px !important;
height: 125px !important;
border-radius: 00px !important;
background-image: url("http://i.imgur.com/Vx3qSUw.png") !important;
background-repeat: no-repeat;

}
#follow-notification .followname {
position: absolute !important;
text-align: center !important;
margin-top: 5px !important;
margin-left: 10px !important;
width: 300px !important;
font-size: 30px !important;
font-weight: bold !important;
font-family: Century Gothic !important;
color: white !important;
text-transform: capitalize;
-webkit-text-fill-color: white;
-webkit-text-stroke-color: white;
-webkit-text-stroke-width: 0px;
overflow: ahidden !important;
}
 
.followname:after {
content: "" !important;
}
Old Name: RepentGamingTV
Twitch: Here

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