Fixed Line Height on NewsFlash Suckerfish menu

Nick and I figured out how to fix the line height so it looks tighter

The problem was that it was inheriting the line height from the parent item

Here is the code

file: \\lamp\safestartweb\sites\all\themes\newsflash\css\suckerfish_copper.css

#suckerfishmenu     ul.menu li li a:link,
#suckerfishmenu     ul.menu li li a:visited {
  color: #fff;
  background: #B67D30;
  width: 170px;
  border-top: 1px solid #473a26;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
    line-height:16px;     padding-top:3px;     padding-bottom:3px; }

Note the code in yellow. We added padding to the top and bottom of the unordered child list

 

It was inheriting the code from here



#suckerfishmenu     {
  background:url(/sites/default/files/nav-back.gif);
  height:32px;
  line-height:29px;
/*
  background: #473a26;
*/
}