Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Try replacing your .menu_section li a CSS block with these two, so that <a> isn't treated as yet another block.

Code:
.menu_section li {
	display: block;
	padding: 5px;
	background-color: #cfcfcf;
	margin: 0 0 1px 0;
}

.menu_section li a {
	color: #fff;
	text-decoration: none;
}

(by the way, this change is tested.)

[ edit: if you really really wanted the text in the .description text to be raised, add a smaller line-height (say, 1em) to the .description section ]
 
I don't know if this will help, but defining the position of the description my help. In CSS just do position:absolute.

Then again, I've never seen something like this before... Man that's weird!

Steve
 
Try replacing your .menu_section li a CSS block with these two, so that <a> isn't treated as yet another block.

Code:
.menu_section li {
	display: block;
	padding: 5px;
	background-color: #cfcfcf;
	margin: 0 0 1px 0;
}

.menu_section li a {
	color: #fff;
	text-decoration: none;
}

(by the way, this change is tested.)

[ edit: if you really really wanted the text in the .description text to be raised, add a smaller line-height (say, 1em) to the .description section ]

arrgg, perfect cheers!

no the description text raised was something that just happend. in the middle is how i really wanted it.

thanks very much :D
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.