I'm using the below to create a nav-list in my bootstrap based Rails app:
<ul class="nav nav-list">
<li class="nav-header">Going out</li>
<% @event_types.each do |et| %>
<li>
<a href="/events?event_type=<%= et.id %>">
<div class="span2"><%= et.event_type %></div>
<div><span class="badge badge-success"><%= et.events.future_events_count %></span></div></a>
</li>
<% end %>
</ul>
I thought this was looking ok until it was pointed out that it's misaligned in Internet Explorer!!
My site is here: www.wozzoncornwall.co.uk , if you view in Chrome for example it looks fine. View in IE and you'll see what I mean. Does anyone know how to modify this to maintain event types on the left and event counts on the right so it's cross browser compatible?
Many thanks in advance.