ClueTip "custom-width" cross-browser issue
(This replaces previous thread which may have gotten stuck in moderation)
I have a ClueTip that is pulling content from a different web page, and is using the custom-width style. It renders wonderfully in Chrome 4.0.249.43 and Firefox 3.5.7, but under Safari 4 (528.7), Opera 10.10 and IE 8.0.6001.18702 it suffers from a height issue. (By that I mean it only displays the top 60 pixels or so, when the content probably requires about double that in this case).
Here is my code:
jQuery:
- <script type="text/javascript">
$('a.custom-width-300').cluetip({width: '300px', showTitle: false,
sticky: true});
</script>
HTML:
- <a class="custom-width-300" href="/path/page" rel="/path/
page">ContentTitle</a>
I assume this is just a CSS issue and can be fixed by using a height property, but I thought it was curious that I wasn't having other issues with cluetip. I can't tell if it's the web page I'm pulling from or the cluetip box. I'm leaning towards the latter. However, I'm not certain which portion of my CSS would be most useful to share here.
Help?