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
You won't be able to view any bug reports, but it will fix the hanabi display until the permanent fix.
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;
}