Author Topic: Notification Customization  (Read 1660 times)

0 Members and 1 Guest are viewing this topic.

SourScar

  • Youngling
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
  • Twitch Name: SourScar
Notification Customization
« on: March 21, 2014, 11:05:00 PM »
Hey everyone,

I'm wanting to customize the Follower and Donation notifications but I am not an "advanced user" and was hoping someone could maybe help / write a quick guide.
I tried to post the CSS style sheets from DeepBot wiki into the CLR Browser plugin CSS tab but didn't see any change when adjusting fonts, colors, etc.

Any help is appreciated, thank you.

Izlsnizzt

  • Guest
Re: Notification Customization
« Reply #1 on: March 21, 2014, 11:08:11 PM »
To make the changes you've made stick, add an !important flag to the lines you've changed.  e.x.

Code: [Select]
font-size: 20px;
becomes

Code: [Select]
font-size: 18px !important;

SourScar

  • Youngling
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
  • Twitch Name: SourScar
Re: Notification Customization
« Reply #2 on: March 21, 2014, 11:57:11 PM »
Awesome! Thank you!