Results 1 to 4 of 4

Thread: Change Font on DHTML Tooltip II

  1. #1
    Join Date
    Nov 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Change Font on DHTML Tooltip II

    DHTML Tooltip II

    http://www.dynamicdrive.com/dynamici...mltooltip2.htm

    Hi All -

    How do I change and/or set the font on the tool tip? It is displaying as times new roman, i've tried setting it to arial, but nothing seems to work.

    Thanks,

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    You've tried doing this?:
    Code:
    <style type="text/css">
    
    #dhtmltooltip{
    position: absolute;
    left: -300px;
    width: 150px;
    border: 1px solid black;
    padding: 2px;
    background-color: lightyellow;
    visibility: hidden;
    z-index: 100;
    /*Remove below line to remove shadow. Below line should always appear last within this CSS*/
    filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
    font-family: arial;
    }
    
    #dhtmlpointer{
    position:absolute;
    left: -300px;
    z-index: 101;
    visibility: hidden;
    font-family: arial;
    }
    
    </style>
    Jeremy | jfein.net

  3. #3
    Join Date
    Nov 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks... i forgot "family" .... its a sunday! thanks again.

  4. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    The "[Thank user who made this post]" button will add a "thanks" if this was helpful, by the way.
    Last edited by djr33; 02-25-2008 at 06:20 AM.
    Jeremy | jfein.net

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •