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
cruttley2cruttley2 

Sdocs - Template - how to do a word warp?

I am using SDocs which has an HTML editor for its document templates. 
I have a Special Instructions text field that I want to wrap, but I dont know how to do that. 
Can anyone tell me how to insert a word-wrap into this code?

<table border=".5" cellpadding="0" cellspacing="0" class="style1" style="line-height: 20.7999992370605px; width: 699px;" width="50%">
    <thead>
        <tr>
            <th class="style3" colspan="4" scope="col" style="border-color: rgb(0, 0, 0); text-align: left;"><span style="font-size: 12px;"><strong>Special Instructions</strong></span></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td colspan="4" style="border-color: rgb(0, 0, 0);"><span style="font-size:11px;">{{!Order.special_instructions_all__c}}</span></td>
        </tr>
        <tr>
            <td colspan="4" style="border-color: rgb(0, 0, 0);"><span style="font-size:12px;"><strong>Shipping Instructions -&nbsp;</strong></span><span style="font-size: 11px;">Loading Area ({{!Order.shipping_loading_area__c}}), Acceptance TImes ({{!Order.shipping_acceptance_times__c}}), Advance Notice ({{!Order.shipping_is_advance_notice_required__c}})</span></td>
        </tr>
    </tbody>
</table>