I am having trouble displaying multiple Bootstrap elements and buttons in a single line. Here is an example of what I have:
<span><input class="form-control" id="filename" value="Select a ZIP file to upload..." disabled style="display: inline"></span>
<span><input type="button" id="get_file" class="btn btn-primary" value="Browse" style="display: inline"></span>
<span><input type="button" id="get_file" class="btn btn-success" value="Upload" style="display: inline"></span>
<input type="file" id="my_file" accept=".zip" style="display: none">
This code should display a text field with two buttons, but my output looks like this:
https://i.stack.imgur.com/OiccI.png
I want the two buttons to appear on the same row as well.