Deep Bot - Twitch Streamer Assistant

Deep Bot => Custom Notifications => Topic started by: l0wcrow on August 03, 2014, 06:41:45 AM

Title: CLR Browser always resetting
Post by: l0wcrow on August 03, 2014, 06:41:45 AM
Hey,

just got the donation notification which is awesome but I have a little problem.

Everytime I add something in the css configuration and restart obs everything is reseted...url, dimension and css

Thats my CSS Configuration

::-webkit-scrollbar {
  visibility: hidden;
}
body {
  background-color: rgba(0, 0, 0, 0);
  margin: 0px auto;
}
#donor-notification {
background-image: url("http://db.deep.sg/ChequeEUR.png") !important;
}


I am also using for example the Nightdevchat, there I have added several stuff to the CSS config and there it saves everythign after restarting obs.
Title: Re: CLR Browser always resetting
Post by: Dante557 on August 03, 2014, 06:59:35 AM
For some bizarre reason CLR Browser in OBS will reset any changes you make on exit if any double quotes are used. You need to use single quotes instead. Here is the fix to your CSS

Code: [Select]
::-webkit-scrollbar {
  visibility: hidden;
}
body {
  background-color: rgba(0, 0, 0, 0);
  margin: 0px auto;
}
#donor-notification {
background-image: url('http://db.deep.sg/ChequeEUR.png') !important;
}
Title: Re: CLR Browser always resetting
Post by: l0wcrow on August 03, 2014, 07:16:53 AM
Hey man, worked perfectly ;)

was a bit strange for me aswell :P
Thanks for your fast answer!

cheers l0wcrow