Increasing the font size of outputText value by using adf skin selector
VinithaJan 5 2012 — edited Jan 6 2012Hi,
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?