i have one pageblocksection.
i want to remove Required information displaying on right hand side. Thanks.
<apex:pageBlockSection columns="2" title="Personal Data">
<apex:pageBlockSection columns="1">
<apex:repeat value="{!Info}" var="application">
<apex:repeat value="{!Fields}" var="app">
<apex:inputField value="{!application[app.fieldPath]}" required=" {!OR(app.required, app.dbrequired)}"/>
</apex:repeat>
</apex:repeat>
</apex:pageBlockSection>
</apex:pageBlockSection>

