• Erin Page 4
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
I am trying to bold the word "eligible".
So far I have this:
<apex:pageBlockSection title="S Assistance" columns="1">
<apex:outputLabel value="They would like to give eligible requirements, etc."/>
<apex:outputField value="{!app.S_Assistance_Requested__c}" />
</apex:pageBlockSection>

I've tried this:
<apex:pageBlockSection title="S Assistance" columns="1">
<apex:outputLabel value="They would like to give <b>eligible</b> requirements, etc."/>
<apex:outputField value="{!app.S_Assistance_Requested__c}" />
</apex:pageBlockSection>

Not sure how to do this.  Please assist.