Box around autoresponder optin

by 4 replies
5
Hi,
I'm just about to go live with a new site, but wanted one more alteration to it. Where I'm asking people to sign into the mailing list, I would like a dotted box around it (ie -------------). Can anyone give me the HTML to do this or tell me where I can find it?
Thanks
Chris
#website design #autoresponder #box #optin
  • Add your style

    .yourStyle {border: 4px dashed #000;}

    then add the class to your table or div tag.

    <table class="yourStyle">
    <tr>
    <td>-----</td>
    </tr>
    </table>

    or

    <div class="yourStyle"></div>

    Just change the thickness and color to your needs.

    Vic
  • Thanks alot for that Vic, been very helpful!
    Can anyone suggest a good resource for learning HTML? Book, webpage etc?
    • [1] reply
  • Check my site for tutorials.

Next Topics on Trending Feed

  • 5

    Hi, I'm just about to go live with a new site, but wanted one more alteration to it. Where I'm asking people to sign into the mailing list, I would like a dotted box around it (ie -------------). Can anyone give me the HTML to do this or tell me where I can find it? Thanks