2012-06-19 80 views

回答

3

Apex項目幫助通常(也許總是?)有一類「instructiontext」。所以你可以使用CSS爲其定義屬性。如果你有一個CSS腳本,你可以添加一個條目,它是這樣的:

.instructiontext {color: red; font-size: 300%} 

否則,你可以簡單地在頁面模板頭部添加一些內聯CSS是這樣的:

<html lang="&BROWSER_LANGUAGE." xmlns:htmldb="http://htmldb.oracle.com"> 
<head> 
<title>#TITLE#</title> 
<link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_20/theme_3_1.css" type="text/css" /> 
<!--[if IE]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_20/ie.css" type="text/css" /><![endif]--> 
#HEAD# 
<!-- Add this --> 
    <style type="text/css"> 
    .instructiontext {color: red; font-size: 300%} 
    </style> 
<!-- End of my CSS --> 
</head> 
<body #ONLOAD#>#FORM_OPEN# 

結果:

enter image description here

相關問題