Jump to content

How to change font-color in order-confirmation page ?


tungneed

Recommended Posts

The fact is, that text has no class wrapping it. So ideally you should first add a surrounding div to

 

\themes\default-bootstrap\modules\bankwire\views\templates\hook\payment_return.tpl

 

like

<div class="mycolor">

		{l s='Please send us a bank wire with' mod='bankwire'}
		<br />- {l s='Amount' mod='bankwire'} <span class="price"> <strong>{$total_to_pay}</strong></span>
		<br />- {l s='Name of account owner' mod='bankwire'}  <strong>{if $bankwireOwner}{$bankwireOwner}{else}___________{/if}</strong>
		<br />- {l s='Include these details' mod='bankwire'}  <strong>{if $bankwireDetails}{$bankwireDetails}{else}___________{/if}</strong>
		<br />- {l s='Bank name' mod='bankwire'}  <strong>{if $bankwireAddress}{$bankwireAddress}{else}___________{/if}</strong>
		{if !isset($reference)}
			<br />- {l s='Do not forget to insert your order number #%d in the subject of your bank wire' sprintf=$id_order mod='bankwire'}
		{else}
			<br />- {l s='Do not forget to insert your order reference %s in the subject of your bank wire.' sprintf=$reference mod='bankwire'}
		{/if}		<br />{l s='An email has been sent with this information.' mod='bankwire'}
		<br /> <strong>{l s='Your order will be sent as soon as we receive payment.' mod='bankwire'}</strong>
		<br />{l s='If you have questions, comments or concerns, please contact our' mod='bankwire'} <a href="{$link->getPageLink('contact', true)|escape:'html':'UTF-8'}">{l s='expert customer support team. ' mod='bankwire'}</a>.


</div>

Then you can target it with css like 

 

.mycolor {color:red}

 

In, say, global.css

Link to comment
Share on other sites

×
×
  • Create New...