Vaughn Whiskey
Member
Original Post
Huzza! Night was able to figure it out by simply adding a basic css :after code.
this is all sorted now!
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
and this is what the basic alert looks like
So if anyone could help me figure out how to add "username Has Followed" to my alert css, that would be amazing.
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
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!