I am trying to have a circular logo placed to the left of a bootstrap nav menu and have the menu align with the bottom of the row but it always wants to align with the top. I wrote this in jade but hopefully people with other languages can at least understand how it works (indents signify nestings instead of having closing tags). Is there a way i can easily do this with css or using the grid system in bootstrap?
doctype 5
html
head
title= title
link(rel='stylesheet', href='/css/bootstrap.min.css')
link(rel='stylesheet', href='/stylesheets/style.css')
body
.container
.row
.span3
img(id='add-razaoSocial', src='KSUB_PLATTER_Full.png', width=100)
.row
.span9
.navbar(class="pull-left")
.navbar-inner
a(class='brand')
ul(class="nav nav-tabs")
li
a(href='#') About
li
a(href='#') Schedule
li
a(href='#') Events
li
a(href='#') Gallery
block content
script(src='http://code.jquery.com/jquery.js')
script(src='/js/bootstrap.min.js')
