You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: aker

Basic information

Registered Jun 17, 2009
Last login Jun 21, 2009
Forum posts 3
Direct URL http://www.flowplayer.org/forum/users/11935

Latest forum posts

Posts:

Registered:

» Tip - How to create Rotating Tabs (with code)

Posted: Jun 18, 2009

Excellent! your code works great.
=)

Posts:

Registered:

» Tooltip inside a Tab has issues

Posted: Jun 17, 2009

Use a paragraph for your tool tip

p.tooltip {  
    background-color:#ffff8e; 
    /*outline:1px solid #fff;*/ 
    border:1px solid #ddd; 
    padding:5px;  
    display:none;  
    color:#44335F;  
    text-align:left;  
    font-size:9pt;  
  
    /* outline radius for mozilla/firefox only */  
    outline-radius:4px;  
    -moz-outline-radius:4px;  
    -webkit-outline-radius:4px;  
}       
p.tooltip p {  
    font-weight:normal;  
} 


<div class="panes"> 
    <div>First tab content. Tab contents are called "panes" 
        <a href="#" rel="#overlay">Test</a><p class="tooltip">MyTooltip</p>             
  </div>
... 

Posts:

Registered:

» div elements inside tabs

Posted: Jun 17, 2009

Having same issue,
Temporal solution: use P and avoid the div inside the tabs.