<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://www.w3.org/Bugs/Public/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4"
          urlbase="https://www.w3.org/Bugs/Public/"
          
          maintainer="sysbot+bugzilla@w3.org"
>

    <bug>
          <bug_id>19696</bug_id>
          
          <creation_ts>2012-10-25 05:16:49 +0000</creation_ts>
          <short_desc>Bottom part of logo doesn&apos;t link (masked by #sitenav .container)</short_desc>
          <delta_ts>2012-12-18 12:43:46 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>webplatform.org</product>
          <component>skin</component>
          <version>unspecified</version>
          <rep_platform>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>trivial</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Sam Dutton">samdutton</reporter>
          <assigned_to name="Doug Schepers">schepers</assigned_to>
          <cc>Heath</cc>
    
    <cc>jonathan</cc>
    
    <cc>lea</cc>
    
    <cc>team-webplatform-admin</cc>
          
          <qa_contact name="public-webplatform-bugs list">public-webplatform-bugs</qa_contact>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>77086</commentid>
    <comment_count>0</comment_count>
    <who name="Sam Dutton">samdutton</who>
    <bug_when>2012-10-25 05:16:49 +0000</bug_when>
    <thetext>The bottom part of the webplatform logo doesn&apos;t link  because #sitenav .container is overlaid on it.

Adding the following to #p-logo would fix the problem, but this is a bit of a hack:

z-index: 1;
position: relative;

The problem might be better solved by adding margin-left to #sitenav .container and removing the padding-left from ul.links.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>77700</commentid>
    <comment_count>1</comment_count>
    <who name="Jonathan Garbee">jonathan</who>
    <bug_when>2012-11-01 21:16:17 +0000</bug_when>
    <thetext>*** Bug 19822 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>77701</commentid>
    <comment_count>2</comment_count>
    <who name="Jonathan Garbee">jonathan</who>
    <bug_when>2012-11-01 21:17:11 +0000</bug_when>
    <thetext>Bug 19822 suggested another possible fix.  I myself haven&apos;t had it work though.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>77702</commentid>
    <comment_count>3</comment_count>
    <who name="Heath">Heath</who>
    <bug_when>2012-11-01 21:20:16 +0000</bug_when>
    <thetext>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.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>77703</commentid>
    <comment_count>4</comment_count>
    <who name="Heath">Heath</who>
    <bug_when>2012-11-01 21:29:21 +0000</bug_when>
    <thetext>(In reply to comment #3)
&gt; Change:
&gt; #sitenav .links {
&gt;     padding-left: 150px;
&gt; }
&gt; 
&gt; To:
&gt; #sitenav .links {
&gt;     margin-left: 150px;
&gt; }
&gt; 
&gt; 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;
}</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>77704</commentid>
    <comment_count>5</comment_count>
    <who name="Heath">Heath</who>
    <bug_when>2012-11-01 21:30:26 +0000</bug_when>
    <thetext>(In reply to comment #4)
&gt; (In reply to comment #3)
&gt; &gt; Change:
&gt; &gt; #sitenav .links {
&gt; &gt;     padding-left: 150px;
&gt; &gt; }
&gt; &gt; 
&gt; &gt; To:
&gt; &gt; #sitenav .links {
&gt; &gt;     margin-left: 150px;
&gt; &gt; }
&gt; &gt; 
&gt; &gt; This will fix it without needing to bother with z-index or positions.
&gt; 
&gt; Also, we would need to do the following to the mobile media query.
&gt; 
&gt; @media screen and (max-width: 520px)
&gt; #sitenav .links {
&gt;    padding: 0;
&gt; }

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;
}</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>80287</commentid>
    <comment_count>6</comment_count>
    <who name="Lea Verou">lea</who>
    <bug_when>2012-12-17 16:57:48 +0000</bug_when>
    <thetext>(In reply to comment #3)
&gt; Change:
&gt; #sitenav .links {
&gt;     padding-left: 150px;
&gt; }
&gt; 
&gt; To:
&gt; #sitenav .links {
&gt;     margin-left: 150px;
&gt; }
&gt; 
&gt; This will fix it without needing to bother with z-index or positions.

This doesn’t seem to fix it. 

pointer-events: none would fix it really easily, but the fix won&apos;t (currently) work in Opera and IE. However, it’s minor enough that it might be ok.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>80288</commentid>
    <comment_count>7</comment_count>
    <who name="Lea Verou">lea</who>
    <bug_when>2012-12-17 17:04:10 +0000</bug_when>
    <thetext>&gt; pointer-events: none would fix it really easily, but the fix won&apos;t
&gt; (currently) work in Opera and IE. However, it’s minor enough that it might
&gt; be ok.

Nah, my comment was nonsense. pointer-events: none; can&apos;t be used here. I think the z-index solution is the only one that seems to work, and comes with the minimum hassle.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>80338</commentid>
    <comment_count>8</comment_count>
    <who name="Lea Verou">lea</who>
    <bug_when>2012-12-18 12:43:46 +0000</bug_when>
    <thetext>Fixed in the test wiki, so will propagate to stable once we deploy.

For the record, the only thing that was needed was z-index: 1 on #p-logo.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>