Question / Help Help With Alittle CSS and CLR Browser.

Original Post
Hey guys,

I know this isn't really a OBS issue or request but I justed wanted to pick your brains for a second here. Night has added a new followers alert using CLR browser and I have been trying to add a simple "Has Followed" text after the text on the alert.

My current CSS for the CLR Alert is
Code:
::-webkit-scrollbar {
  visibility: hidden;
}
body {
  background-color: rgba(0, 0, 0, 0);
  margin: 0px auto;
}
#follower-alert {
     height: 720px !important;
     width: 1280px !important;
}
#follower-alert .text {
     margin-left: 0px !important;
     padding-top: 660px !important;
     width: 1280px !important;
}

and this is what the basic alert looks like
e4ccfdc6bed7723a097409ad2e735de9.png


So if anyone could help me figure out how to add "username Has Followed" to my alert css, that would be amazing.

Huzza! Night was able to figure it out by simply adding a basic css :after code.

Code:
}
#Follower-alert .text:after {
     content: " Has Followed";
}

this is all sorted now!
 
Code:
#Follower-alert .text:after {
     content: " Has Followed";
}

Adding this code works but after you restart OBS it will reset the CLR Browser entry back to its default state. Like you have never edited the entry. It must be a bug. I have checked in both 32 and 64 bit versions. Please confirm.
 
Back
Top