I pinned the CSS and the image file so that the images are CSS accessible.
http://www.salesforce.com/us/developer/docs/pages/Content/pages_resources.htm
I have executed the documentation code, but it is not displayed at all.
<apex:stylesheet value="{!URLFOR($Resource.jquery_dialog_css_img, 'jquery_ui_one_dot_eight_dot_eleven.css')}" />
Pinned File Structure:
[jquery_dialog_css_img] ---- jquery_ui_one_dot_eight_dot_eleven.css | |---images ----- someImage.jpg
When rendering a visualforce page, the import tag is as follows:
<link class="user" href="/resource/1301916406000/ manenabi__jquery_dialog_css_img/ jquery_ui_one_dot_eight_dot_eleven.css" rel="stylesheet" type="text/css" />
It looks right, and I have no idea why it is not working. When I click on the generated link:
/ resources / 1301916406000 / manenabi__jquery_dialog_css_img / jquery_ui_one_dot_eight_dot_eleven.css
The page is blank, which (I think) means the path is incorrect. (If true, the popup will show the code as js or css)
source share