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
nani@rnani@r 

i want to make colour to the every field in visualforce page

i want to give a  different colors to the every field in visualforce page can u help me 

Navatar_DbSupNavatar_DbSup

Hi,

 

In salesforce some apex:component have style attribute .you can specify the inline css by using the style attribute of the apex:compenent.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

 

 

Gunners_23Gunners_23

In order to achieve that please use "Style" or "StyleClass" attribute in that field as shown below

 

Using Style

 

<apex:outputText value="Blah Blah ..... " rendered="{!budgetSumSet}"  style="font:size=18;">

 

Using StyleClass

 

<apex:outputText value="Blah Blah ..... " rendered="{!budgetSumSet}" styleClass="p">

 

Add this one on top

 

<style type="text/css">
.p
{
    color:blue;
    text-align:left;
    font-size:1.4em;
}
</style>