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
John NeffJohn Neff 

Text color not rendering in PDF attachment - help!

Good Evening, 

I have a Visualforce email template with a PDF attachment and there is some text that is conditionally displayed.  Depending on a field value, one of two values are displayed... and one of the values is/should be RED. 

This is working fine on the VF page, but not on the corresponding attachment.  Is there a way that I can make my text turn red?

Here is my code:

 
<apex:outputPanel rendered="{!If(relatedTo.Revision__c <>'TRUE',true,false)}">
<h2>ORDER/TRAFFIC INSTRUCTIONS</h2>
</apex:outputPanel>  
         
<apex:outputPanel rendered="{!If(relatedTo.Revision__c ='TRUE',true,false)}">
<h2><font color="#FF0000">REVISED ORDER/TRAFFIC INSTRUCTIONS</font></h2>
</apex:outputPanel>
Thank you in advance for your help!
 
KaranrajKaranraj
John,

Using visualforce inline styling tags, check the below sample
 
<apex:outputLabel style="color: #FF0000;align: center;">REVISED ORDER/TRAFFIC INSTRUCTIONS</apex:outputLabel>

 
John NeffJohn Neff
Thanks Karanaj, I tried this but it is still rendering as black in the PDF