Changes
Title
unchanged
Creating a CSS Driven Drop Down Menu using CMenu
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
cmenu, dropdown, drop down, css
Content
changed
[...]
Ok so now that we have our PHP setup, let's dig into the CSS part. I am also not going to include the code for the sprites to keep things simple.
~~~
[css]
#menu-top ul { list-style: none; margin: 0; padding: 0; position: relative; height: 30px; }
#menu-top ul li { display: block; height: 28px; float: left; overflow: visible; }
#menu-top ul li:hover > ul { display: block; }
#menu-top ul li a { float: left; display: block; }[...]