2011-04-22 23 views
0

ClueTips使箱子看起來像這樣。我幾乎讀不懂。我可能會在哪裏出錯?ClueTips - 文字不可讀,看起來不像演示

enter image description here

許多感謝您的幫助。我的HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-us" > 
<head> 
<link rel="stylesheet" href="/media/blueprint/screen.css" type="text/css" media="screen, projection"> 
<link rel="stylesheet" href="/media/blueprint/print.css" type="text/css" media="print"> 
<link rel="stylesheet" href="/media/cluetip/jquery.cluetip.css" type="text/css" media="print"> 
<script type="text/javascript" src="/media/jquery-1.5.2.min.js"></script> 
<script type="text/javascript" src="/media/cluetip/jquery.cluetip.js"></script> 
<script type="text/javascript"> 
$(document).ready(function() { 
    $('a.tips').cluetip(); 
}); 
</script> 
</head> 
<body class="search"> 
     <table id="search_results"> 

      <tr> 
       <td><a class="tips" rel="/plasmid/1/" href="/plasmid/1/">SV40</a></td> 
      </tr> 

      <tr> 
       <td><a class="tips" rel="/plasmid/1/" href="/plasmid/4/">CAG</a></td> 
      </tr> 
</table> 
</body> 
</html> 
+1

bluetip樣式表是否被加載? – 2011-04-22 14:47:12

+0

你的意思是cluetip樣式表? Firebug顯示樣式表,我可以從Firebug查看它,所以我會假設它意味着它正在加載。 – Greg 2011-04-22 14:54:10

回答

0

啊修好了。我從另一行拷貝了<link rel="stylesheet"...行,以獲得cluetip css,並且它有media = print。它需要說媒體=屏幕。