Page 1 of 1

Replace Background for specific games

Posted: 17 November 2023, 16:25
by Weasy Mac
Hi, I want to change the background picture of specific games with some custom CSS. I know how to replace it for the whole website but how do you apply it for only one specific game.

I found in the browsers dev tools that BGA has some special rules that are crossed out and the main background is, in this case, replaced by the Splendor one (see picture).

https://i.imgur.com/0YSFeSH.png

Simply copying the rules in the BGA custom CSS box doesn't work.

Anyone know how to do this? Thanks.

Re: Replace Background for specific games

Posted: 17 November 2023, 16:58
by xiongmao1298

Code: Select all

html:has(<some game specific class selector>) {
	background: <your background> !important;
}
should do it. If you're using Firefox, :has support might need to be enabled in the browser settings first.

Re: Replace Background for specific games

Posted: 17 November 2023, 18:24
by Weasy Mac
xiongmao1298 wrote: 17 November 2023, 16:58

Code: Select all

html:has(<some game specific class selector>) {
	background: <your background> !important;
}
should do it. If you're using Firefox, :has support might need to be enabled in the browser settings first.
Doesn't work, but thanks.