I found an example online, but I couldn't get list items horizontally like here, whatever I did, they came vertically. Any help is appreciated. The example is here
Asked
Active
Viewed 40 times
1 Answers
0
If you set the style of each scroll menu to "display: inline-block" they should show up horizontally. Here is a simple example with divs...
<div style="background-color: black;display: inline-block;width: 100px;height: 100px;"></div>
<div style="background-color: black;display: inline-block;width: 100px;height: 100px;"></div>
<div style="background-color: black;display: inline-block;width: 100px;height: 100px;"></div>

CurtisJD
- 46
- 4
-
tried with "display: inline" and it worked, thank you so much! – Feb 12 '15 at 20:48