Reduce v2
Navigation begins as a single row at the top of the layout and items are removed from right to left as the viewport shrinks.
<style>
.main_cta img { width: 100%; height: auto !important; }
/* Reduce Navigation Pattern CSS */
@media only screen and (max-width: 600px) {
td[class="main_nav"], td[class="main_nav"] table {
display: block;
width: 100%;
}
td[class="main_nav"] tr {
display: block;
height: 44px;
overflow: hidden;
text-align: center;
}
td[class="main_nav"] td {
display: inline-block;
}
}
</style>
<table cellpadding="0" cellspacing="0">
<tr>
<td class="main_nav" width="600">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="center" style="padding: 15px 10px; font-family: arial,sans-serif; font-size: 12px; font-weight: bold;">
<a href="#" style="text-decoration: none; color: #999999;">Navigation 1</a>
</td>
<td align="center" style="padding: 15px 10px; font-family: arial,sans-serif; font-size: 12px; font-weight: bold;">
<a href="#" style="text-decoration: none; color: #999999;">Navigation 2</a>
</td>
<td align="center" style="padding: 15px 10px; font-family: arial,sans-serif; font-size: 12px; font-weight: bold;">
<a href="#" style="text-decoration: none; color: #999999;">Navigation 3</a>
</td>
<td align="center" style="padding: 15px 10px; font-family: arial,sans-serif; font-size: 12px; font-weight: bold;">
<a href="#" style="text-decoration: none; color: #999999;">Navigation 4</a>
</td>
<td align="center" style="padding: 15px 10px; font-family: arial,sans-serif; font-size: 12px; font-weight: bold;">
<a href="#" style="text-decoration: none; color: #999999;">Navigation 5</a>
</td>
<td align="center" style="padding: 15px 10px; font-family: arial,sans-serif; font-size: 12px; font-weight: bold;">
<a href="#" style="text-decoration: none; color: #999999;">Navigation 6</a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="main_cta" style="padding-bottom: 10px;">
<img src="http://placehold.it/600x300&text=Main+CTA" alt="" style="display: block; border: 0;" />
</td>
</tr>
</table>