Making WordPress.org

Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#2118 closed defect (bug) (fixed)

[Homepage] "Download WordPress" doesn't display at 820px width

Reported by: mbabker's profile mbabker Owned by:
Milestone: Priority: normal
Component: General Keywords:
Cc:

Description

On the WordPress homepage, when the browser has a 820px width the "Download WordPress" button does not display. The media queries for the button in the main header and the mobile download section both target 820px for their 'display: none;' declarations.

Change History (2)

#1 @Otto42
8 years ago

  • Resolution set to fixed
  • Status changed from new to closed

Changing the min-width on the #download-mobile to 821px eliminates the issue by allowing that div to appear at 820px.

wp4.css line 636:

@media screen and (min-width:821px) {
    #download-mobile {
        display: none;
    }
}
Last edited 8 years ago by Otto42 (previous) (diff)

#2 @Otto42
8 years ago

Fixed in [4204].

Note: See TracTickets for help on using tickets.