I have this HTML:
<html>
<head>
<link href="bootstrap.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<form method="post" enctype="multipart/form-data">
<table class="table">
<tr>
<td>Current Version</td>
<td><strong><?= $version ?></strong></td>
</tr>
<tr>
<td>Upload new version</td>
<td><input class="btn-info btn" type="file" name="package"><input type="submit" class="btn-info btn" value="Upload"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
But the submit button is rendered under the fileupload element, but I want it on the right side of it. When I disable bootstrap, it works. How can I get any info next to the file browser?