Page 1 of 1

Right-side display bug fix

Posted: 02 September 2024, 17:12
by Sammy McSam
There was a site update today that has caused a display bug for Hanabi where the right-side player panels and logs have moved to the bottom of the page.

Here is a temporary fix:

1. Go to https://boardgamearena.com/preferences?section=advanced
2. Copy & paste the below
3. Save

Code: Select all

/*2024-09-02 display bug fix right side*/
#overall-content:has(.bgagame-hanabi) {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"top  top"
		"left right";
}
#overall-content:has(.bgagame-hanabi) #topbar {
	grid-area: top;
}
#overall-content:has(.bgagame-hanabi) #leftright_page_wrapper {
	grid-area: left;
}
#overall-content:has(.bgagame-hanabi) #right-side {
	grid-area: right;
	margin-left: 5px;
}
You won't be able to view any bug reports, but it will fix the hanabi display until the permanent fix.

Re: Right-side display bug fix

Posted: 02 September 2024, 18:21
by thoun
You can remove this CSS, the bug has been fixed.