I'm attempting to style a tooltip on hover but with no success.
Here is my code:
CSS
.header_menu_res ul li a:hover:after {
content: attr(title);
color: #fff;
background: #333;
background: rgba(51,51,51,0.75);
padding: 5px;
position: absolute;
left: -9999px;
opacity: 0;
bottom: 100%;
white-space: nowrap;
-webkit-transition: 0.25s linear opacity;
height: 100px !important;
}
HTML
<div class="header_menu_res"><ul><li><a class="primary" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi pretium" href="http://www.test.co.uk/"><em class="icon-home"></em>Home</a></li></ul></div>
When i hover over the anchor i still see the default tool tip? Any help greatly appreciated.