Author Topic: CLR Browser always resetting  (Read 2006 times)

0 Members and 1 Guest are viewing this topic.

l0wcrow

  • Youngling
  • *
  • Posts: 37
  • Karma: +0/-0
    • View Profile
  • Twitch Name: l0wcrow
CLR Browser always resetting
« 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.

Dante557

  • Advisor
  • Councilor
  • **
  • Posts: 555
  • Karma: +26/-0
  • Sometimes Helpful, Sometimes Not :D
    • View Profile
    • My Twitch Page
  • Twitch Name: Dante557
Re: CLR Browser always resetting
« Reply #1 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;
}
If you need to get through to me you can try to contact me on Twitter @ http://www.twitter.com/dante556

l0wcrow

  • Youngling
  • *
  • Posts: 37
  • Karma: +0/-0
    • View Profile
  • Twitch Name: l0wcrow
Re: CLR Browser always resetting
« Reply #2 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