This block of code
HTML
<input type="text" name="category" id="category" value=""> <input type="text" name="category_1" id="category_1" value="" tabindex="1"></div>
Despite multiple attempts such as adding attributes like tabindex
, nbsp
, and playing with css
, the desired outcome of having these two input fields appear on the same line still remains unachievable.
CSS
<style type="text/css">
input.category {
vertical-align:top;
}
</style>
UPDATE
I suspect there may be a conflicting CSS plugin causing this issue. I have tried all suggested solutions but nothing seems to work. The CSS being used is from the mcdropdown plugin. Here is a link to view the code. It starts with a copy of the initial style
followed by the CSS copied from the mcdropdown.css file.
Please advise on how to resolve this issue.