Right-side display bug fix

Forum rules
Please DO NOT POST BUGS on this forum. Please report (and vote) bugs on : https://boardgamearena.com/#!bugs
Post Reply
User avatar
Sammy McSam
Posts: 83
Joined: 07 April 2021, 20:02

Right-side display bug fix

Post 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.
User avatar
thoun
Posts: 1620
Joined: 10 December 2020, 22:25

Re: Right-side display bug fix

Post by thoun »

You can remove this CSS, the bug has been fixed.
Post Reply

Return to “Hanabi”