1
votes

I have created a Login page using Oracle Apex 5.1 where the region template is "Login". I want my region title to be bold and also want to increase the size of the title text. How can I achieve this?

I am sorry if this question is very noob level question. I am new to Oracle Apex and have spent several hours to achieve this. Could anyone help me solve this problem?

1

1 Answers

3
votes

You can use HTML in any text fields like titels, headers, region text etc.

<p><font size="20" face="verdana" color="green"><b>This is some text!</b></font></p>

Also you can put region static ID and make custom styling with CSS (in page Inline CSS or in ThemeRoller)
Edit: Just simple example: I have Colapsible region with static id: reg
Region title is h2 elemnt in the Div so in inline CSS section put something like this:

#reg h2{
  color:red;
  font-style: bold;
  font-size: 24px;
}

Change color, size, style or delete some lines until you are happy with the result. You can use many style properties like drop shadows, font type, margins, paddings etc. Use google search for more about CSS styling.