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.

#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:

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


CategoryMoinMoinBugFixed

MoinMoin: MoinMoinBugs/InterwikiAndPageNameNotOnSameBaseline (last edited 2007-10-29 19:22:08 by localhost)