Some time ago i found an article online thet explained how you can attach to the back of an external link an image showing the type of link it was, a pdf, a word document, an image ... etc. something like it's shown here: http://en.wikipedia.org/wiki/Tulip_mania#Competing_views link on the page: "The Tulipmania: Fact or Artifact?"
Anyone has any ideas about this, maby stumbled upon that website... or something like this.
<a href="?phpMyAdmin=4594f30712f4fabaff6997416810f3f2">This is a Link<img src="foo.jpg" width="x" height="y" alt="file type"/></a>
CSS as follows
a{position:relative;} /* important this makes the <a> the parent of the img for position*/ a img{ position:absolute; right:-50px;/* change this till the image is where you want*/ top:0; display:none; }
a:hover img{display:block;}
To those that have seen me suggest this before 'I do not have a CSS pop up fixation'. It's just fits the purpose!