Quote:
Originally Posted by TygerTyger
Brilliant, exactly what I was looking for to create Wikipedia-style links. And just to be helpful, here's how it's done.
Demo: http://www.forumwhatever.co.uk/showp...89&postcount=3
Nice and easy to do, instead of the provided CSS, use this:
Code:
/* Gallery Links */
a.gal:link {
padding:0 0 0 12px;
background:url(images/misc/exlink.gif) no-repeat 0;
}
a.gal:visited {
padding:0 0 0 12px;
background:url(images/misc/exlink.gif) no-repeat 0;
}
a.gal:hover {
padding:0 0 0 12px;
background:url(images/misc/exlinkon.gif) no-repeat 0;
}
And put appropriate link icons in the directory you want, linking to them in the CSS. You can forgo the hover part of the CSS if you don't want a hover effect, but you must keep visited or the image won't show up on visited links.
|
Thanks for that. I really really like that little shortcut image. Can I steal it?