Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Increasing the font size of outputText value by using adf skin selector

VinithaJan 5 2012 — edited Jan 6 2012
Hi,

I am using JDeveloper 11.1.2.0.0 . My requirement is to increase the font size of value "hello" given in outputText by using css. Syntax given is as follows...

<af:outputText value="hello" id="ot1" styleClass="communication"/>

Definition provided in css

af|outputText.communication::value
{
color: Fuchsia; font-size: 3em;
}

I tried this but the font size is not increased.But when i tried for inputText it works fine - Font size is increased . Syntax given for inputText is as follows...

<af:inputText label="Hello" id="it11" styleClass="communication"/>

Definition provided in css

af|inputText.communication::content
{
font-size:3em; color: Lime;
}


Can someone tell me how to handle the same?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 3 2012
Added on Jan 5 2012
10 comments
2,786 views