Page 1 of 1
Is there a way to see icons under a placed building?
Posted: 28 January 2024, 14:58
by Pamela Patty
As per title.
It is hard - at least for a newbie like I am - to properly evaluate some opponents' moves when someone places a building and triggers an effect on the map.
I usually have to go online and search for the map picture to understand what happened.
Maybe I've been missing it, but in case it would be useful to have a "transparent mode" button to make buildings temporary disappear from the view and see the "plain" zoo.
Re: Is there a way to see icons under a placed building?
Posted: 29 January 2024, 17:59
by greenjacket124
The game log mentions all of those placement bonuses already. I suppose that a transparent mode could be doable, by affecting the opacity of anything covering the map.
Re: Is there a way to see icons under a placed building?
Posted: 30 January 2024, 11:54
by pjt33
The message in the game log is fairly opaque: if you don't already know what it means, it's not easy to figure it out, and IIRC it's quite similar to the message for a bonus triggered by cubes removed when playing conservation projects.
I might experiment with using the following custom CSS, because on the basis of a quick test on a game replay it looks quite helpful:
Code: Select all
.bgagame-arknova .building-container { opacity: 0.8; }
Re: Is there a way to see icons under a placed building?
Posted: 31 January 2024, 08:29
by ogValdus
pjt33 wrote: ↑30 January 2024, 11:54
TI might experiment with using the following custom CSS, because on the basis of a quick test on a game replay it looks quite helpful:
Code: Select all
.bgagame-arknova .building-container { opacity: 0.8; }
For anyone who doesn't know, most desktop browsers have the ability to edit live pages. Any person wanting to use this can inject it into the page manually. You can also use various browser plugins to make it a togglable option once you've identified the correct code .
Re: Is there a way to see icons under a placed building?
Posted: 31 January 2024, 11:04
by pjt33
This website supports small amounts of custom CSS natively. Insert in
https://boardgamearena.com/preferences?section=advanced , save, and reload the page.
Re: Is there a way to see icons under a placed building?
Posted: 31 January 2024, 23:58
by VictoryPointTTV
My recommendation would be to add the following CSS code using a browser plugin or the BGA custom CSS page:
Code: Select all
.bgagame-arknova .building-container:hover { opacity: 0.2; }
Then you can hover the building to see underneath it.
NB. This probably won't work on mobile.
Re: Is there a way to see icons under a placed building?
Posted: 01 February 2024, 11:46
by pjt33
I find that opacity: 0.8 is just enough to see, but you have to know the icons well to be able to recognise them. I also found, playing a full game, that when I play the Build action I'm slightly annoyed by the opacity being applied to the menu of available buildings. VictoryPointTTV's idea of using a hover selector is quite nice: what I'm going to try next time is
Code: Select all
.bgagame-arknova .zoo-board .building-container { opacity: 0.8; }
.bgagame-arknova .zoo-board .building-container:hover { opacity: 0.5; }
Edit: I was happy with that.
Re: Is there a way to see icons under a placed building?
Posted: 01 February 2024, 19:13
by MasterMystery
i guess once marine worlds is out, due to the swordfish which can take down buildings again, it may be a feature anyway