Is there a way to disable the tooltips of the tag in css?
I'm afraid that just isn't feasible. You can, however, use Javascript to strip out a link's title which may allow you to do what you want:
document.getElementById('aid').title = "";
should do the trick.