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
Andrew AldisAndrew Aldis 

How can I add white space inbetween an outputfields field label and value?

I am trying to create a VF Page to render as a PDF, but am having trouble getting it to format.  I have an output Field  <apex:outputField Value="{!Client_Workbook__c.Name}"/>  but when I generate the PDF there is no space inbetween the label and the value. 
It shows up like this "Client Workbook NameCWB-0001"  The label is Client Workbook Name and the value is CWB-0001, I want it to appear with a space in between the two like "Client Workbook NameCWB-0001".  I have tried using a label with a space added in the parenthesis like this <apex:outputField Value="{!Client_Workbook__c.Name}" label="Client Workbook Name:  "/><br/> but it does the same thing.  How can I get it to properly space between the value and the label?