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