You may also want to give that DIV a unique style ID so you can later apply some styling in stylesheet.css

PHP Code:
<div id="paypalPreferred"><?php echo TEXT_PAYPAL_PREFERRED;?></div>
Then, in your stylesheet.css file you can create a declaration and apply whatever styling you need/want for that element:


EG:
Code:
#paypalPreferred {
 color: #cc0000;
 padding: 10px 0px 10px 0px;
 }