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
ManjusrinuManjusrinu 

how to dispaly apex message in center of my vf page

Hi,
I need to dispaly an apex:message in my center of my vf page 
how can i do that ?
Suraj MakandarSuraj Makandar
Hi Meka,

You need to add styleClass to your <apex:message> tag as shown below:
<style type="text/css">
 .exceptionText{
      text-align:center;
}
</style>


<apex:messages layout="list" styleClass="exceptionText"/>

Hope this helps!

Thanks,
Suraj
ManjusrinuManjusrinu
Even it is not working