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
sudha76sudha76 

Problem with the Font size while generating the PDF Form.

Hi there,

 

This is the piece of code:-

 

<td width="35%" align="left">
                <u><apex:outputText value="Account Manager Info" style="font-weight:bold; font-size:14px" /></u><br></br>
                     <b> Requestor Name: </b> <span> <span><apex:outputText value="{!relatedTo.Owner.Name}" /> </span></span>
                </td>

 

The output of this code is working great.

 

I used the same code here and just changed the labels:-

 

<td width="35%" align="left">
                <u><apex:outputText value="Partner Info for Reimbursement" style="font-weight:bold; font-size:14px" /></u><br> </br>
                     <b> Partner Name: </b> <span><span> <apex:outputText value="{!relatedTo.Owner.Name}" /> </span></span>
                </td>

 

 

The problem is:-

 

Partner Name is displayed very big font size. It does not look the same as the Requestor Name. I am simply using <b> tags and nothing else, then why is it showing so huge in the second cell and the first one works fine.

 

What am I missing?