Page Items Help Text
Oracle Apexのフォントサイズを変更する必要があります。どうすればこれを行うことができますか?
質問する
4867 次
2 に答える
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#
結果:
于 2012-06-19T09:39:56.167 に答える