Browse Source

Fix poll button margins

spaghetti 8 years ago
parent
commit
fe2bac1e2c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      sections/forums/thread.php

+ 3
- 3
sections/forums/thread.php View File

@@ -378,7 +378,7 @@ if ($ThreadInfo['NoPoll'] == 0) {
378 378
           <br />
379 379
           <br />
380 380
 <?    } ?>
381
-          <input type="button" style="float: left;" onclick="ajax.post('index.php','poll',function(response) { $('#poll_container').raw().innerHTML = response});" value="Vote" />
381
+          <input type="button" onclick="ajax.post('index.php','poll',function(response) { $('#poll_container').raw().innerHTML = response});" value="Vote" />
382 382
         </form>
383 383
       </div>
384 384
 <?  }
@@ -390,7 +390,7 @@ if ($ThreadInfo['NoPoll'] == 0) {
390 390
         <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
391 391
         <input type="hidden" name="topicid" value="<?=$ThreadID?>" />
392 392
         <input type="hidden" name="feature" value="1" />
393
-        <input type="submit" style="float: left;" onclick="return confirm('Are you sure you want to feature this poll?');" value="Feature" />
393
+        <input type="submit" onclick="return confirm('Are you sure you want to feature this poll?');" value="Feature" />
394 394
       </form>
395 395
 <?    } ?>
396 396
       <form class="manage_form" name="poll" action="forums.php" method="post">
@@ -398,7 +398,7 @@ if ($ThreadInfo['NoPoll'] == 0) {
398 398
         <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
399 399
         <input type="hidden" name="topicid" value="<?=$ThreadID?>" />
400 400
         <input type="hidden" name="close" value="1" />
401
-        <input type="submit" style="float: left;" value="<?=(!$Closed ? 'Close' : 'Open')?>" />
401
+        <input type="submit" value="<?=(!$Closed ? 'Close' : 'Open')?>" />
402 402
       </form>
403 403
 <?  } ?>
404 404
     </div>

Loading…
Cancel
Save