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
           <br />
378
           <br />
379
           <br />
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
         </form>
382
         </form>
383
       </div>
383
       </div>
384
 <?  }
384
 <?  }
390
         <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
390
         <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
391
         <input type="hidden" name="topicid" value="<?=$ThreadID?>" />
391
         <input type="hidden" name="topicid" value="<?=$ThreadID?>" />
392
         <input type="hidden" name="feature" value="1" />
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
       </form>
394
       </form>
395
 <?    } ?>
395
 <?    } ?>
396
       <form class="manage_form" name="poll" action="forums.php" method="post">
396
       <form class="manage_form" name="poll" action="forums.php" method="post">
398
         <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
398
         <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
399
         <input type="hidden" name="topicid" value="<?=$ThreadID?>" />
399
         <input type="hidden" name="topicid" value="<?=$ThreadID?>" />
400
         <input type="hidden" name="close" value="1" />
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
       </form>
402
       </form>
403
 <?  } ?>
403
 <?  } ?>
404
     </div>
404
     </div>

Loading…
Cancel
Save