MyBB Community Forums

Full Version: Drop down menu? What do I need to edit in my CSS?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum: http://rshub.net/forum/

As you can see, the navigation is getting pretty populated, so I want to condense some things.

How would I create a drop down menu? This is my current CSS for the menu, I believe.

.menu ul a {
	color: #ccc;
	padding: 6px;
	text-decoration: none;
}

.menu ul a:hover, .menu ul a:active {
	background: #494949;
	color: #fff;
	padding: 5px;
	border: 1px solid #393939;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-shadow: 0 -1px 0 #111;
	text-decoration: none;
}
Thank you so much! It worked!
Thanks.