How do I box in a testimonial

by 9 replies
13
Would someone give me a simple code for putting
a box around a tetimonial on my site please?

Thanks, Rick
#programming #box #testimonial
  • You mean a border? Just use a table with border =1

    <table border=1><tr><td> testmonial text here </td></tr></table>

    as a simple example
    • [2] replies
    • Or

      <div style="border:1 solid #000000;background-color:#999999;margin:10px;padding:10px;">
      testimonial goes here
      </div>
      if you want shading, etc
      • [2] replies
    • Thanks for the help Joe. Take care, Rick
  • here are a few different codes for boxes:

    Large Red Dashed Border Code
    <table width="357" height="267" align="center" style='border: 8px dashed red;'>
    <tr>
    <td align="center" valign="top"><div align="center">
    <h3>Yes I can't wait to get ahold
    of these action scripts, right NOW! </h3>
    <h3>Take me to my members area!</h3>
    <p><a href="http://ecoversource.com"></a><br />
    <br />
    <strong><em>Order with confidence, on our<br />
    100% Secure Server!</em></strong></p>
    <p>Even if it's 3:37 in the morning, and <br />
    everyone else is asleep.... </p>
    <p>We're open all nite! </p>
    </div></td>
    </tr>
    </table>
    <div align="center">

    Color Box with dotted border
    <div style="width:400px;text-align:left;padding:5px;background-color:#ffffc1;border:2px dotted black;font-size:12px;">YOUR TEXT GOES HERE</div>
    <p>&nbsp;</p>
    <p><br />

    Single yellow line border
    <div style="border:1px solid gold;padding:10px;">
    <p>Put a border around your text</p>
    </div>
  • And if you need to use quotation marks, use HTML codes & # 8220; and & # 8221; without the spaces.
  • [DELETED]

Next Topics on Trending Feed