Welcome to WebDesignForums.net!
You're currently viewing WDF as a guest. By registering for a free account, you'll be able to participate with other members in our friendly community. Being a member allows you to ask questions and get answers for those troublesome web development tasks!

In addition, as a member you'll be able to post your websites up for review. Using our unique website review system you can gain some amazing feedback from some of the best web developers around. This is a completely free service to all registered members.

Ready to register yet? Registration is 100% free. Click Here To Join Now!

Yellow colour pop-up box

Discussion in 'HTML and CSS Help' started by issac_tuckar, Jul 14, 2004.

  1. Offline

    issac_tuckar New Member

    Message Count:
    9
    Likes Received:
    0
    Trophy Points:
    0
    I want to implement pop-up menu That is when some one moves over an hyperlink item, there is small yellow colour box that displays the descriptions of the particular item. For example windows applications display when we choose some item in any of the menu.
    In www.yahoo.com, when some one chooses mail or finance or travel,
    the cotents "mail" "travel" "finance" is displayed in a small yellow colour box near the cursor.

    Please help me to implement this feature in my web design.


  2. Offline

    glyakk the voice of reason

    Message Count:
    1,263
    Likes Received:
    6
    Trophy Points:
    38
    Location:
    USA
    All you have to do is use the title attribute when dealing with links..

    <a href="index.htm" title="Home page">Home</a>

    This would display Home page when you rolled over the link.

    EDIT: You can also employ the alt attribute when dealing with images.

    <img src="image.gif" alt="description text">


Share This Page