Opened 11 years ago

Closed 11 years ago

#19723 closed Cleanup/optimization (wontfix)

Make div#container "margin: auto;"

Reported by: swordangel@… Owned by: nobody
Component: *.djangoproject.com Version: 1.4
Severity: Normal Keywords: css, wide screen
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: yes

Description

When viewing the main and documentation websites (i.e. www and docs) on a wide screen (e.g. 24", 1920 * 1080), the content is all stuck to the left. I find it ugly and it forces me to keep either my head or my eyes turned to the left. A simple solution is to give div#container a CSS rule of "margin: auto;" so the content gets centred.

Change History (2)

comment:1 by swordangel@…, 11 years ago

The code.djangoproject.com website would need a different selector:

div#django-containter {
    margin: auto;
}

comment:2 by Russell Keith-Magee, 11 years ago

Resolution: wontfix
Status: newclosed

Thanks for the suggestion; however, we're in the process of doing a redesign of djangoproject.com; making the whole layout adaptive is part of the design brief.

Note: See TracTickets for help on using tickets.
Back to Top