Hi Stuart,

Stuart King wrote:
> I am having to problems:
> 
> 1: the navVert menu will not stay inside the wrapper
> 2. when hovering, it does not change colors
> 
> Url: http://www.1954crestlineskyliner.com/index.htm
> 

I think you just ran into the "positioning pitfall".
With position: absolute the #navVert element goes into its own canvas context.
It's no longer a child of the #header or any other element.
One suggestion to solve the problem
- remove the position, top, right properties
- add float: right to #navVert and float: left to #header h1
Perhaps you have to add some margins|paddings after that.

#header h1 {
         float: left;
}
#navVert {
        text-align: right;
        margin: 0px;
         float: right
        padding: 0px;
        width: 220px;
        font: 100% Arial, Helvetica, sans-serif;
        z-index: 3;
        color: #FFFFFF;
        text-decoration: none;
}

Regards
  EJ
-- 
Eike Jordan  <[EMAIL PROTECTED]>

| FIZ CHEMIE BERLIN
| Franklin Str. 11               ------    ,__o
| 10587 Berlin                  ------   _-\_<,
|                              ------   (+)/'(+)
| Tel. : 0049-30-39977 214

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to