2012-06-19 82 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

相关问题