diff --git a/app/styles/play/ladder/ladder-tab-view.sass b/app/styles/play/ladder/ladder-tab-view.sass
index aa68deb63..a429ffc18 100644
--- a/app/styles/play/ladder/ladder-tab-view.sass
+++ b/app/styles/play/ladder/ladder-tab-view.sass
@@ -8,6 +8,9 @@
 
   .histogram-display
     height: 130px
+
+    svg
+      overflow: visible
     
   .bar rect
     fill: steelblue
diff --git a/app/views/ladder/LadderTabView.coffee b/app/views/ladder/LadderTabView.coffee
index b8009b35d..82feb23c0 100644
--- a/app/views/ladder/LadderTabView.coffee
+++ b/app/views/ladder/LadderTabView.coffee
@@ -248,12 +248,12 @@ module.exports = class LadderTabView extends CocoView
         .data([playerScore])
         .enter().append('g')
         .attr('class', 'specialbar')
-        .attr('transform', "translate(#{x(playerScore)}, #{y(9001)})")
+        .attr('transform', "translate(#{x(playerScore)}, 0)")
 
       scorebar.append('rect')
         .attr('x', 1)
         .attr('width', 3)
-        .attr('height', height - y(9001))
+        .attr('height', height)
     rankClass = 'rank-text'
     if teamName.toLowerCase() is 'ogres' then rankClass = 'rank-text ogres-rank-text'
     if teamName.toLowerCase() is 'humans' then rankClass = 'rank-text humans-rank-text'