I have a problem with the link titles. I tried to style the link title with css. My css is :
a[title]:hover:after {
content: attr(title);
padding: 2px 8px;
position: absolute;
left: 0;
top: 100%;
white-space: nowrap;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border:1px solid #bce8f1;
background-color:#d9edf7;
color:#31708f;
font-weight:700;
box-shadow: 0 0 6px #bce8f1;
z-index:99999999;
}
But when I hover over the link, I get this styled title but I get also the old one like on the photo.
Any ideas?
Thanks