Hello hive mind,
I am in desperate need of some HTML help. I am have almost no HTML experience, but have been teaching myself some basic hacks. I am so close to having our Return Template ready, but I am stuck on aligning our footer (which just consists of our signature) on the bottom right. Below is a screenshot of the rendered footer and below is what I used to achieve this (simply trial/error and google).
Any help would be greatly appreciated.
<p style= "font-size: 12px; font-weight: bold; color: #000000; font-family: Arial, Helvetica, sans-serif; vertical-align: top; text-align: right"> <br> Ithaca College Theatre Box Office <br> 953 Danby Road, Ithaca, NY 14850 <br> Dillingham Center <br> boxoffice@ithaca.edu </br> </p>
I'm assuming you are just putting this at the bottom of one of the templates. You can try your code wrapped in a table, something like this:
<table width="700"> <tr> <td> <p style= "font-size: 12px; font-weight: bold; color: #000000; font-family: Arial, Helvetica, sans-serif; vertical-align: top; text-align: right"> <br> Ithaca College Theatre Box Office <br> 953 Danby Road, Ithaca, NY 14850 <br> Dillingham Center <br> boxoffice@ithaca.edu </br> </p> </td> </tr></table>
Thank you, so helpful!