Oracle Apex 5.1: Styling the Region Title -
i have created login page using oracle apex 5.1 region template "login". want region title bold , want increase size of title text. how can achieve this?
i sorry if question noob level question. new oracle apex , have spent several hours achieve this. me solve problem?
you can use html in text fields titels, headers, region text etc.
<p><font size="20" face="verdana" color="green"><b>this text!</b></font></p>
also can put region static id , make custom styling css (in page inline css or in themeroller)
edit: simple example: have colapsible region static id: reg
region title h2 elemnt in div in inline css section put this:
#reg h2{ color:red; font-style: bold; font-size: 24px; }
change color, size, style or delete lines until happy result. can use many style properties drop shadows, font type, margins, paddings etc. use google search more css styling.
Comments
Post a Comment