Description
If you look in different browsers at the interwiki name, the location breadcrumbs (mainpage(s)) and the pagename they seem are not on the same baseline.
Steps to reproduce
look at this page in different browsers
Example
Details
MoinMoin Version |
|
OS and Version |
|
Python Version |
|
Server Setup |
|
Server Details |
|
Workaround
A simple solution to this is to write the interwiki name if not None before the pagename and not behind the logo. Then it has the same css attribute as the pagename. It doesn't matter if browsers align a bit different the logo to the pagename text.
- The interwiki name should keep its own CSS id to be placeable at a different place, if wanted. But we want to have it on same baseline in modern and classic theme.
#interwiki { float: left; margin: 8px 0; padding: 0 2px; font-size: 24px; }
#pagelocation { /* clear: right; */ display: block; margin: 8px 0; padding: 0 10px; font-size: 24px; }
I think we need the same font-size or on the other hand the smaller one is centered to the bigger one. -- ReimarBauer 2005-12-05 22:23:35
works well in konqueror and firefox
It was intended that the interwiki name should be smaller:
- to show that it is not part of the pagename, but something different
- to save space
- to make the page name more impressive, like the h1 it used to be
ok, then please try this one:
#interwiki { float: left; margin: 8px 0px; padding: 3px 0px; font-size: 18px; } #pagelocation { /* clear: right; */ display: block; margin: 8px 0; padding: 0 10px; font-size: 24px; }
I used the padding of the half difference of the font size to adjust it to the baseline. -- ReimarBauer 2005-12-06 17:11:47
One fixed next one opened. Now my pagetrail list does start at position of page name
#pagetrail { clear: right; display: block; margin: 0px; padding: 6px 10px; font-size: 0.88em; }
I think we need here padding: 6px 10px; and margin: 0px;
Discussion
Plan
- Priority:
- Assigned to:
- Status: fixed by using a surrounding div, moin 1.5 ~ patch-310