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
PrasadVRPrasadVR 

page block section color

Hi...... How can i create different colors for every page block section in vf page
AmitSahuAmitSahu
Use CSS...
Sourabh_Master10Sourabh_Master10

Hi,

Used this style into your vf Page.

 

<style>
.pbSubheader{
background-color: red !important;
border-color: none !important;
}
</style>

 

 

 

if you think that answer is right then please tick the answers.

Thanks

Sourabh

PrasadVRPrasadVR
Thanks.....Sourabh It appears same color for every page block section but i want different color in every page block section
PrasadVRPrasadVR
Can u explain how can we use CSS in vf page
AmitSahuAmitSahu
That you can do using specific id/class value of the pageblocksection
Sourabh_Master10Sourabh_Master10

Hi,

See these links:-
http://www.forcetree.com/2009/07/visualforce-page-with-css.html
http://www.salesforce.com/docs/developer/cookbook/Content/vf_add_css.htm

if you think that answer is right then please tick the answers.
Thanks
Sourabh