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.