I'm having trouble getting the logo and navigation bar to align properly inside the container div. The navigation bar always ends up below the logo. I've tried using HTML align attributes, but they haven't resolved the issue. I'm working with Bootstrap CSS, so I'm wondering if I need to make any changes there?
<header>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<!--company logo and slogan-->
<img src="img/logo.png" alt="logo" />
<!--button for responsive navigation-->
...
<!--Nav bar-->
<div class="nav-collapse collapse">
<ul class="nav pull-right" >
...
</ul>
</div>
</div>
</div>
</div>