how do i underline the <ul>
but not <li>
.
My css is
#rightcol { width:170px; min-height:350px; float:right;
background:#fff; border:1px solid #666; border-radius:5px; }
#rightcol > ul { list-style:none; line-height:2em; padding-left:0;
font-weight:bold; text-decoration:underline; text-align:center; }
#rightcol > ul > li { padding-left:20px; font-weight:normal;
font-size:12px; text-decoration:none; text-align:left; }
But <li>
css "text-decoration:none"
is not working.