#32391 closed defect (bug) (fixed)
About page: not enough space for localized navigation links
| Reported by: | pavelevap | Owned by: | helen |
|---|---|---|---|
| Priority: | normal | Milestone: | 4.3 |
| Component: | Help/About | Version: | 4.3 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: | ui |
Description
After redirecting to About page (after WP update), there is not enough space for translated navigation links bellow. But there is enough space available, so it should not be a problem even if translation is longer then original?
See attached screenshot.
Attachments (3)
Change History (10)
#1
@
11 years ago
- Keywords has-patch added
Just added a quick fix that will expand the container of the links to take all the available width, allowing longer localized links. The div tagname was added to override the .about-wrap .two-col > div rule, avoiding !important usage.
#3
@
11 years ago
- Keywords needs-patch added; has-patch removed
Seems to me the <hr> and return-to-dashboard div need to move out of the feature-section div. feature-section has a border-bottom too, then no need for the <hr> anymore.
#4
@
11 years ago
@helen +1.
Looking at the HTML in about.php it appears that the .return-to-dashboard has been wrongly inserted in the .feature-section in the first place. Attaching a new patch that moves .return-to-dashboard to the correct place, and also the <hr> is removed as unnecessary, because of the .feature-section bottom border.
With this, the CSS modification that the previous patch was doing is not necessary.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
In about.php, stretch the
.return-to-dashboardsection towidth: 100%to support the longer localized links. Also addingdivtagname as prefix to the.return-to-dashboardclassname to override the.about-wrap .two-col > divrule, avoiding!importantusage.