I am wanting to add ">" to a link when on mouseover. Does anyone have any suggestions? I am not wanting to use an image.
Thanks for your help.
I am wanting to add ">" to a link when on mouseover. Does anyone have any suggestions? I am not wanting to use an image.
Thanks for your help.
where did you see a link like that?I am wanting to add ">" to a link when on mouseover
//\\ //\\// || //\\//\\ //\\ ||_
SOFTWARE
You should be able to use the following script: http://www.dynamicdrive.com/dynamici...bulletlink.htm Just change the <img> tag to the desired text HTML instead.
ddadmin:
I thought about that as I laid in bed losing sleep. Thanks for your conformation.
IanMarlowe:
I have not seen it anywhere...I guess....I just wanted to use it.
Thanks
eWish
I thought I'd let you know you can do that effect far easier with CSS and make your pages backward compatiable with older browsers too.
Try this approach:
Put this in your head tags:
<style type="text/css">
<!--
#linkid, #linkid:visited
{
// Make your link look like whatever here
}
#linkid i
{
visibility : hidden;
}
#linkid:hover i
{
visibility : visible;
}
//-->
</style>
in your body code:
<a href="#" id="linkid">Your link text <i> > </i></a>
(To get the ">" in your link you need to use the right ascii code as leaving the ">" above will make your page not validate.)
This approach is much easier to update and also its completely reusable throughout all of your webpages.
Hope this helps.
Very true. Only one thing:
#linkid
You can't (validly) reuse an ID - each one must be unique. You must use a CSS class here instead.
And the > is > .
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Bookmarks