> I have got over my fear of sending a ink to the site so you can see that
> it's level 3, from the websites drop down that could be improved by
> centering vertically.
> 
> http://blakeys.com/
> 

/* this is the box that actually lays out the interior of level 2.  It was hard 
to find through all the extra stuff. */
.group-box2 {
  overflow: hidden; /* this makes the div have the height of the internal box 
(all the contents are floated, so it has no height by default. */
  position: relative; /* this makes it the parent for the level3 absolute 
positioning */
}

.level3 {
  position: absolute; /* position relative to group-box2 */
  top: 50%; /* top goes in the middle of the group-box2 */
  margin-top: -2.8em; /* since the ul is 4 lines of text, this is half the 
height of the ul (assuming no vertical margins or padding, and a default 
line-height of 1.2em) */
  width: 41%;  /* makes the highlight go to the edge of the box -- needs some 
tweaking */
}

Also, it looks like you have a whole lot of really useless divs in here.  I 
don't see the point of groupboxes 3, 4, or 5, or hoverboxes 2, 3, or 4.  And 
this solution makes div.sub useless as well.

---Tim
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to