diff --git a/app/components/elements/Voting.jsx b/app/components/elements/Voting.jsx
index 9701507806f165074a8753ba05f9590d8c771f81..382c4f44dd17c835f733d5535742ab17cb546f51 100644
--- a/app/components/elements/Voting.jsx
+++ b/app/components/elements/Voting.jsx
@@ -120,11 +120,12 @@ class Voting extends React.Component {
                 <a href="#" onClick={this.voteDown} className="confirm_weight" title="Flag">
                 <Icon size="2x" name="chevron-down-circle" /></a>
                 {myVote == null && vesting_shares > VOTE_WEIGHT_DROPDOWN_THRESHOLD &&
-                    <div className="clear">
+                    <div>
                         <div className="weight-display"> - {weight / 100}%</div>
                         <Slider min={100} max={10000} step={100} value={weight} onChange={this.handleWeightChange} />
                     </div>
                 }
+                <CloseButton onClick={() => this.setState({showWeight: false})} />
                 <div className="clear">
                     <p>{ABOUT_FLAG}</p>
                     <p>
@@ -134,7 +135,6 @@ class Voting extends React.Component {
                         </Follow>
                     </p>
                 </div>
-                <CloseButton onClick={() => this.setState({showWeight: false})} />
             </FoundationDropdown>
 
             // ? Remove negative votes unless full power -1000 (we had downvoting spam)
diff --git a/app/components/elements/Voting.scss b/app/components/elements/Voting.scss
index 9a94e2c80b04573703950b3f1fe9958717e902aa..bf8d60a2f3d638ea89c0bd1b665b333f9cb763df 100644
--- a/app/components/elements/Voting.scss
+++ b/app/components/elements/Voting.scss
@@ -147,7 +147,19 @@
 
 .Voting__adjust_weight_down {
     @extend .Voting__adjust_weight;
-    left: -333px;
+
+    right: 0;
+    width: 500px !important;
+
+    div.clear {
+      clear: both;
+    }
+    p, span {
+      white-space: normal !important;
+    }
+    .weight-display {
+      color: #C00 !important;
+    }
 }
 
 .Voting__adjust_weight {