## Basics
-A menu is a `<table>` with a class of `.menu` and a `<tr>` inside of it. Each link in the menu is a `<td>` with an `<a>` inside of it.
+A menu is a `<table>` with a class of `.menu` and a `<tr>` inside of it. Each link in the menu is a `<th class="menu-item">` with an `<a>` inside of it.
In Inky HTML, use the tag `<menu>` to make a menu, and the tag `<item>` to make an item.
---
-## Simple Menu
+## Vertical Menu
-Menu items have padding around them, which in some situations will misalign your link text with another element of your design. To strip the padding from menu items, add the class `.simple` to the menu. There will still be some horizontal space between them, to space them out.
+Menus align horizontally by default. To switch to a vertical menu, add the class `.vertical` to the menu.
```inky_example
-<menu class="simple">
+<menu class="vertical">
<item href="http://zurb.com">Item</item>
<item href="http://zurb.com">Item</item>
<item href="http://zurb.com">Item</item>
---
-## Vertical Menu
+## Vertical Menu on the Small Breakpoint
-Menus align horizontally by default. To switch to a vertical menu, add the class `.vertical` to the menu.
+Menus align horizontally by default. To switch to a vertical menu on the small breakpoint only, add the class `.small-vertical` to the menu. This works well because the email clients that support media queries fall into the small breakpoint like iPhones and Android 4.4.
```inky_example
-<menu class="vertical">
+<menu class="small-vertical">
<item href="http://zurb.com">Item</item>
<item href="http://zurb.com">Item</item>
<item href="http://zurb.com">Item</item>
</menu>
-```
+```
\ No newline at end of file
<li><a href="callout.html">Callout</a></li>
<li><a href="global.html">Global Styles</a></li>
<li><a href="grid.html">Grid</a></li>
+ <li><a href="menu.html">Menu</a></li>
<li><a href="spacer.html">Spacer</a></li>
<li><a href="wrapper.html">Wrapper</a></li>
<!-- <li><a href="thumbnail.html">Thumbnail</a></li> -->