After adding chevrons to the panel-heading of collapsable Bootstrap 3 panels, I'm trying to get them vertically centered.
This is what the panel-heading looks like:
<div class="panel-heading">
<h3 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseActivity1" class="collapsed">
Truck maintenance<br />
<small>Monday t/m Wednesday</small>
</a>
</h3>
</div>
As you can see in this JSFiddle, the alignment isn't quite right when the heading consists of multiple lines.
Q1: How can I vertically center the chevron in the panel-heading? Can't seem to find a solution that works with both multiple lines and single lines.
Q2: What's the recommended HTML markup for a subtitle as seen in the example? Using an h4 underneath the h3?