OBS showing “next-song” but regular browser does not

In my custom CSS I have it setup to where it will not show the “next-song” element. It works great on standard browser but still displays it inside of OBS. Am I doing something wrong?

  • **Sonoma 14.2
  • **2.5.6
  • **11.3.3

Hey @iamderkis , can you post the css you’re using? Also, does OBS allow you to inspect the element?

Hey @iamderkis,

It seems that OBS doesn’t support the :has selector in CSS. As an alternative, you could use the following CSS:

.lyrics .line:last-of-type {
  display: none;
}

This will hide the last line, regardless of what it is, but since AbleSet always adds a “next song” line at the end of your lyrics, that shouldn’t be an issue.

This should also work:

.lyrics .line .next-song {
  display: none;
}

Let me know if one of the two solutions work for you!

That worked! Thank you!

1 Like