I'm using zurb foundation's dropdown menu. I need the dropdown lists to display as inline-block. So far, I haven't any foundation rules that do this. I need help
<html>
<head>
<!--foundation styles-->
<style type="text/css">
.custom-menu{
display:inline-block;
}
</style>
</head>
<body>
<div class="row text-center">
<ul class="dropdown menu custom-menu" data-dropdown-menu>
<li><a href="#">Item One</a>
<ul class="menu">
<!-- I want to display the lists here as inline
block-->
<li><a href="#">Item One A</a></li>
<!--more Links-->
</ul>
</li>
<li><a href="#">Item Two</a></li>
</ul>
</div>
<!--foundation scripts-->
</body>
</html>