So I have the following html

<a id="myTipTest" rel="#myTest" title="My ClueTip Header">Test style</a> 

<div id="myTest">
    <div style="float:left;">
            <p>
            Left floated text
            </p>
    </div>
    <div style="float:left">
            <p >
            Next Left floated text
            </p>
    </div>
</div>

And the following code:

$("#myTipTest").cluetip({local: true});  

cluetip correctly styles according to my rolled jquery theme except any attempt to float divs (as shown in the example) leaves #myTest with a dark gray background.

Edit: the grey background only appears in IE. Chrome and Firefox have a dividing line.

link|improve this question

63% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.