So I couldn't find "hide/unhide" game in the bottom right, of the game-details on my shelf....
I inspected the html, and see something strange for the page:
**[code]
<div class="shelf_det_bottom">
__ <div class="list_det_links">
____ <a href="
http://www.gog.com/forum/etherlords_series" class="list_link forum">
____ <span class="list_dot"/>
____ <a href="
http://www.gog.com/support/etherlords_2" class="list_link support">
____ <span class="list_dot"/>
____ <a href="
http://www.gog.com/gamecard/etherlords_2#reviews=1" class="list_link reviews">
____ <span class="list_dot"/>
____ <a class="list_link hide" id="hide_game_1207659167">
____ <span class="empty_space"/>
__ </div>
</div>
**[/code]
the child container, "list_det_links" has a width of 832px;
the child span, within has a width of 832px; and has been assigned: "display:inline-block;"
For some reason IE, thinks that is just fine, and you can still see the "hide/unhide" game link. In Opera and possibly other browsers that is NOT fine. If that "empty_space" span is to have any width at all, it needs to be less than the remaining width of "list_det_links"... or css overflow:hidden applied to "list_det_links".
Although the span probably shouldn't exist at all, when I delete it within IE's DevTools, the page doesn't change at all.
When I apply custom css via opera, to make "empty_space" have a width of 0px; then "hide/unhide" becomes visible again.
**Well apparently, there are no code tags :P