>
>
> Questions are:
> - In the left sidebar (Choose a Report) I would like the hover to extend
> the complete width of the sidebar and midway up/down between the items. I
> used display:block but I can't seem to get it fine tuned.
>
You should apply display:block to the anchor elements (<a>) to make them
extend the full width of their container.  Note that their containers
parent has padding applied to it, so they will not extend the full width of
the "Create Report" box like you may want/expect them to.  For vertical
spacing you can try a couple of things: display:table/table-row/table-cell,
setting a height, using padding, using line-height (what I'd probably do),
among others I'm sure.


> - Footer: not sure why the color is not extending throughout the entire
> width of the footer.
>
Hmm, maybe you mean height?  A couple of options here as well.
  1. You can float the footer and apply a width of 100%
  2. You can apply overflow: auto to the footer
  3. you can use a clearfix on the footer (just add the class 'clearfix' as
you've already defined it)


>
> - The Reports Parameters box. Is there a way when this box is short (as
> shown now) the My Reports box beneath can "tuck" up beneath?
>
You could hack it up with javascript and negative margin or positioning,
but, since it's supposed to be in that column anyways, I would wrap it (My
Reports) in the same parent as Report Parameters and be done with it.

Hope that helps!
______________________________________________________________________
css-discuss [[email protected]]
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