I am trying to create one email template have one footer and wants to fix in Bottom of the email template, Is there any way? Appreciate in advance.
Asked
Active
Viewed 273 times
-1
-
1You have to show what you have tried so far. Start by sharing the template that you have so far. – Clock Slave Feb 06 '18 at 05:30
-
1You can make it static on mobile devices but not on all email clients. It will not work on some email clients like Outlook. – Syfer Feb 07 '18 at 00:32
-
@ClockSlave Agree, will take care.. – Alpesh Feb 07 '18 at 06:28
1 Answers
2
A CSS answer. You 'build up' from this corner. An imported image may help with looks. I used the hash tag to make it a division class. Only a division can have a z-index assigned to it.
<style>
#e_mail_template {position:fixed;left:0;bottom:0;z-index:1000;}
</style>
NOTE: Read Syfers comment: "You can make it static on mobile devices but not on all email clients. It will not work on some email clients like Outlook."
Also note that a fixed position with a z-index of 1000 will place this (and the divisions contents) above all other objects.
-
1
-
1@Syfer. The OP did not mention Outlook as a requirement. But any email can emulate HTML format unless it is forced to be text only. – Feb 07 '18 at 01:00
-
Its not about requirement, when an answer is given you can give a disclaimer that it will not work on all email clients. Emails are nothing like Web, no standards and buggy support for everything all over. – Syfer Feb 07 '18 at 01:02
-
You can still add it to your answer from my comment to OP. Its better to give tips then to down vote ;-) – Syfer Feb 07 '18 at 01:07