2

Page Items Help TextOracle Apexのフォントサイズを変更する必要があります。どうすればこれを行うことができますか?

4

2 に答える 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 に答える