As I continue to refine my custom WordPress Bootstrap theme here on my site, I recently ran into an issue where I wanted to style Bootstrap tooltips. I wanted to create a custom style via CSS for the tooltip to remove the default white on black. If you are unsure what a tooltip is or how they appear you can hover over any of the social media icons in the footer of this page. I figured this would be an easy and quick fix. I got the easy part right, but finding the specific fix was a little more challenging. Since the tooltips only appear with a hover and are generated via JavaScript it was a bit confusing finding the exact styles and what to make changes to. In the end I was able to sort through the Bootstrap 3.0 styles to find the ones I needed to override. The tooltips I use for this site appear on top of the item being hovered over. To alter those there are two class styles you must override in your own stylesheet. The first is the .tooltip-inner and the second is the .tooltip-top … [Read more...] about Style Bootstrap 3.0 tooltips