I have a menu listing with the following HTML:
.menu ul {
height: 115px;
width: 960x;
}
.menu li {
font: 900 22px/22px"open sans";
color: #16232e;
width: 160px;
text-align: center;
text-transform: uppercase;
margin-top: 45px;
cursor: pointer;
}
<div class="menu">
<ul>
<li>
<a href="/paginaSYS">
<h4>tituloMenuSYS</h4>
</a>
</li>
<li>
<a href="/paginaSYS">
<h4>tituloMenuSYS</h4>
</a>
</li>
<li>
<a href="/paginaSYS">
<h4>tituloMenuSYS</h4>
</a>
</li>
<li>
<a href="/paginaSYS">
<h4>tituloMenuSYS</h4>
</a>
</li>
<li>
<a href="/paginaSYS">
<h4>tituloMenuSYS</h4>
</a>
</li>
</ul>
</div>
There are six items, what the designer asked me was, when a seventh item is registered, and the user clicks the down arrow, it should show another listing with six items (even if it shows only one). According to this image:
That is, you clicked the down arrow, it shows the next listing with six items. I tried to use the Jcaroulsellite with the vertical, but it did not roll, is there any other solution? The effect has to be to move from top to bottom rather than from left to right.