Hi there! I just started learning Bootstrap today, coming from a background in HTML/CSS. I decided to dive right into Bootstrap 4 instead of starting with version 3, even though I know it's still in alpha. I've been experimenting with it but I can't seem to figure out how to solve my current issue after searching for a while.
Please take a look at this image
The logo in my navbar-brand is too big for the navbar and causing the menu items to misalign. I simply want to vertically align the items so they are centered with the logo.
<nav class="navbar navbar-light bg-faded navbar-full">
<a class="navbar-brand" href="#"><img src="http://www.a1solarandelectrical.com.au/wp-content/uploads/2016/02/logoMedium.png" /></a>
<button class="navbar-toggler hidden-lg-up" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"></button>
<div class="collapse navbar-toggleable-md" id="navbarResponsive">
<ul class="nav navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Solar Power</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">No Obligation Quote</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
</ul>
</div>
</nav>
This is my current code. I haven't added any custom CSS yet, so everything else is at default settings. The logo size is currently set at 85px in height.
Thanks in advance for your help!