Anchor tag in carousel item causes item to be larger than others
Created by: rjregenold
If you add an anchor tag inside of a carousel item, that particular item will be larger than items without an anchor tag. This causes all content below the carousel to move down slightly when the offending item is displayed.
<div class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="path/to/image.png">
</div>
<div class="item">
<a href="http://google.com">
<img src="path/to/image.png">
</a>
</div>
</div>
</div>