Bruc Walker
Bruc Walker

Reputation: 253

I can not see the jquery ui icon but the text inside the span was displayed

I can not see the jquery ui icon but the text inside the span was displayed. Anyway to troubleshoot this. When I used firebug, I don't see the css code when highlighting the span tag.

 <TITLE> Test </TITLE>
 <link rel="stylesheet" type="text/css" href=""file:///C:/test/css/custom-theme/jquery-ui-1.8.16.custom.css">
 <SCRIPT type="text/javascript" src="jquery-ui-1.8.16.custom.min.js"></SCRIPT>
 <SCRIPT type="text/javascript" src="jquery.layout-latest.js"></SCRIPT>
 <SCRIPT type="text/javascript" src="jquery-1.6.2.min.js"></SCRIPT>


 <div id="top" class="north"> 
 <span class="ui-icon ui-icon-arrow-1-w" style="float:left;">This is a test</span>
 </div> 

Upvotes: 0

Views: 103

Answers (1)

Daniel Brockman
Daniel Brockman

Reputation: 19270

You have two double quotes after the href= in your <link> tag.

Upvotes: 1

Related Questions