View Single Post
Old 01-13-2013, 05:15 AM   PM User | #6
sarahinjung
New to the CF scene

 
Join Date: Jan 2013
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
sarahinjung is an unknown quantity at this point
my last post won't show... basically i changed the html and css as suggested, but it didn't work
but actually just from fiddling around i seem to be getting somewhere... this is what i did with the css...
Code:
#nav{
	width: 100%;
	display: inline-block;
	text-align: right;
	float: right;
}
	#nav ul ul{
	display: none;
	}
	
	
		
	
		#nav ul li{
			display: inline-block;
			height: 62px;
		}
			#nav ul li a{
				padding: 20px;
				background: orange;
				color: white;
			}
				
			#nav ul li a:hover{
				text-decoration: none;
				background-color: #ffb424;
				box-shadow: 0px 4px 5px #666;
			}
				
				#nav ul li ul {
					display: none;
				}
				
				#nav ul li:hover ul {	
					display: block;             
				}
				#nav ul li:hover li {
					display: block;             
				}
so now, the sub menu shows up, and it's even going down vertically, BUT the whole menu gets all weird and messy looking whenever the sub menu shows... like everything moves around you know?
sarahinjung is offline   Reply With Quote