Coding Duchess
Coding Duchess

Reputation: 6899

Oracle APEX - display only field is bold

Not sure why this is happening but I have a display only field on my form and both the label and the field value come up as bold. Is there an easy way to un-bold the value part without applying CSS?

Upvotes: 0

Views: 4473

Answers (1)

Tony Andrews
Tony Andrews

Reputation: 132570

There isn't a template option that takes care of this. I believe you will need to use some kind of CSS to do this. At the item level that could be:

style="font-weight: normal"

Or for all display items on the page you could add this CSS fragment in Inline CSS for the page:

.apex-item-display-only {font-weight: normal}

Upvotes: 1

Related Questions