Ravenknight said: I got the same issue when I had the player video/avatar location set to top instead of bottom. Try changing that. Experienced exactly the same thing here. It's the same in both Chrome and Firefox on both Windows 7 and Mac OS 10.something. Looking through the source code, it looks like when you set the player bar position to Top, the playerzone div containing both the player bar and the macro bar is given the class pz-top , which has the following CSS properties: I'm assuming that's to not overlap with the tool bar in the top left corner. Simultaneously, the macrobar div, which is a child of playerzone , gets this property: —likely to offset the 75px padding of its parent. But! Seeing as macrobar has the CSS declaration position:absolute; —it's positioned relative to the page , not its parent element. Thus, the 75px padding of playerzone doesn't affect macrobar at all. Now, if I disable the new -75px margin, macrobar snaps back to where it belongs. Before: After: It looks to me like the solution is pretty straightforward: The declaration margin-left:75px; should be removed from the selector #playerzone.roll20-webrtc.pz-top #macrobar Thanks for reporting this, Rat's Workshop (and for corroborating it, DM Robzer and Ravenknight)! I was very close to assuming I was going half crazy, but your post prompted me to dig down a bit further into what was actually going on. Have a great weekend, everyone.