function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Chandra babu 2Chandra babu 2 

How to Increase size of Text Values

i need How to increase the size of text Values ,, like

                       If suppose text value is Food Item.......I need Food Item size is Increase and color change

plese help me.

 
Sumit Kumar Singh 9Sumit Kumar Singh 9
You can try - 
<apex:outputText value="Food Item" style="font-size: 40px; color : red">
Or 
<div style="font-size: 40px; color : red"> Food Item </div>

Thanks,
Sumit Kumar Singh
Rupal KumarRupal Kumar
Hi Chandra,
                Try this-
<apex:outputText value="{!a.text}" style="color:{!IF(CONTAINS(textfield,"Food Item"), 'red', 'black')} size:20px;"/>
RecommendLink-https://developer.salesforce.com/forums/?id=906F000000098Y1IAI
https://help.salesforce.com/apex/HTViewSolution?id=000004749&language=en_US (https://help.salesforce.com/apex/HTViewSolution?id=000004749&language=en_US)

Thanks
Rupal kumar
http://Mirketa.com