我想實現一個簡單的VF標籤式界面。我已經上傳包含背景圖片裏面的「圖片」文件夾和所需的CSS一個zip文件作爲visualforce背景圖像不顯示
<style type="text/css">body { background-image: url("images/back.jpeg") }
以下是我如何實現的。
<apex:page id="thePage" sidebar="false" showHeader="false" tabstyle="Invoice_Statement__c" standardController="Invoice_Statement__c" standardStylesheets="false">
<apex:image url="{!$Resource.header}" width="1250" />
<apex:stylesheet value="{!URLFOR($Resource.myStyles, 'styles.css')}"/>
<style type="text/css">
p { background-color: ;}
tabPanel{ background-color:blue;}
.activeTab {background-color: #236FBD; color:white; background-image:none}
.inactiveTab { background-color: lightgrey; color:black; background-image:none}
</style>
<apex:tabPanel switchType="client" selectedTab="name1" id="theTabPanel" tabClass="activeTab" inactiveTabClass="inactiveTab">
..
..
..
</apex:tabPanel>
</apex:page>
我的問題是背景不顯示。我跟着這個鏈接 - >http://www.salesforce.com/us/developer/docs/pages/Content/pages_styling_custom.htm 我用
<apex:image url="{!$Resource...}" width="1250" />
及其工作正常,但我無法得到的背景圖像我的應用程序。有什麼建議麼?
在此先感謝 甲硝唑
ps:salesforce.stackexchange.com非常歡迎Salesforce特定問題! –
Thnx提示@Sdry。我當天加入並且喜歡它。 – MnZ
我注意到了:-) –