Results 1 to 7 of 7

Thread: Cool DHTML Tooltip II

  1. #1
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    23
    Thanked 0 Times in 0 Posts

    Default Cool DHTML Tooltip II

    1) Script Title: :: Cool DHTML Tooltip II


    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...mltooltip2.htm

    3) Describe problem:
    the tooltip is showing until the top line of my screen
    see attached.


    Can anyone help me please?
    thank you

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    We need a link to your page to understand where things went wrong

  3. #3
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    23
    Thanked 0 Times in 0 Posts

  4. #4
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    I found two things that seem to mess up the tooltip.
    first in the css you can delete height: 100px in this part of the css
    Code:
    #dhtmltooltip{
    position: absolute;
    left: -300px;
    width: 150px;height:100px;
    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);
    }
    And second: the last clear: both div on the page seem to mess it up as well.
    So you could try to delete
    <div style="clear: both;"></div>
    near the bottom of the page and see if everything looks okay then.
    (maybe you should make a backup copy before doing anything)

  5. #5
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    23
    Thanked 0 Times in 0 Posts

    Default

    I did what u said but the problem is still there
    http://www.alexis-html.com/rachminov...ry/index2.html

  6. #6
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Yeah you are right, sorry, just can't figure it out. Maybe someone else has a suggestion ?

  7. #7
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    23
    Thanked 0 Times in 0 Posts

    Default

    i found the solution
    in the css I had this
    * {
    margin:0px; padding:0px;
    min-height:100%
    }

    i removed the min-height:100%
    and it works

    thnak you!

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
  •