VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: mailblade on October 11, 2017, 10:41:43 AM

Title: Float image in invoice/email footer and header?
Post by: mailblade on October 11, 2017, 10:41:43 AM
Good day.

I've added an image to my footer when you navigate to "SHOP - Invoices/Emails".

I'd like to align/float this image on the bottom-right hand side of the page. I've used the following:

<div style="float:right;"> <img /></div>
<img align="right" />
<div style="bottom: 5px; right: 0px; /? <img /> </div>

However, none of these work. When I test it via the link on the Invoices/Emails page, it refuses to move the image to the right.

Any help would be appreciated. Thank you.
Title: Re: Float image in invoice/email footer and header?
Post by: mailblade on October 11, 2017, 13:20:32 PM
Just had to use a <p style="text-align: right"><img /></p>

Title: Re: Float image in invoice/email footer and header?
Post by: Studio 42 on October 18, 2017, 23:54:31 PM
Another solution can be to use HTML tables, TCPDF and email body does support <td align="right" >
Title: Re: Float image in invoice/email footer and header?
Post by: mailblade on October 19, 2017, 13:58:22 PM
Thanks for the tip will give it a try :)