[Bug 19696] Bottom part of logo doesn't link (masked by #sitenav .container)

https://www.w3.org/Bugs/Public/show_bug.cgi?id=19696

--- Comment #5 from Heath <Heath@mpassociates.com> ---
(In reply to comment #4)
> (In reply to comment #3)
> > Change:
> > #sitenav .links {
> >     padding-left: 150px;
> > }
> > 
> > To:
> > #sitenav .links {
> >     margin-left: 150px;
> > }
> > 
> > This will fix it without needing to bother with z-index or positions.
> 
> Also, we would need to do the following to the mobile media query.
> 
> @media screen and (max-width: 520px)
> #sitenav .links {
>    padding: 0;
> }

Sorry, misclicked.

Also, we would need to do the following to the mobile media query.

change:
@media screen and (max-width: 520px)
#sitenav .links {
   padding: 0;
}

to:
@media screen and (max-width: 520px)
#sitenav .links {
   padding: 0;
   margin: 0;
}

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Thursday, 1 November 2012 21:30:27 UTC