Does anyone know if there is a conditional statement to use an alternative bit of code for mobile phones similar to the below?
<!--[if #)]>
<table width="600" align="center">
<![endif]-->
The "<table width="600" align="centre">
" is simply filler code to show what I mean. The # is where the statement need to go. So for example...
Mobile version:
<!--[if #]>
<table width="300" align="left">
<![endif]-->
All other devices version:
<!--[if #]>
<table width="600" align="right">
<![endif]-->
I hope someone can help me. I'm struggling finding any reference online, maybe I'm using the wrong search terms?
I'm coding an email from scratch and would like to avoid media queries and scripts and keep the code as clean as possible.
Thanks guys! :)