MediaWiki talk:Monobook.css/he

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Since Hebrew is written from right to left, it maybe useful to add here the RTL support of MediaWiki:

@import "/style/monobook/rtl.css";

Eran 19:02, 29 January 2006 (UTC) [reply]

There is a small bug with navigation box (the first box in the side bar) as you can see in Image:Problems with sidebar and logo.JPG (in yellow). This bug occurs on IE (7 and 6) and mozilla/firefox. In order to fix it please add the following code:

#n-mainpage, #n-welcome, #n-portal, #n-village-pump {
position:relative;
right:10px;
}

Eran 10:42, 20 May 2007 (UTC)[reply]

Done. Lcarsdata 11:25, 20 May 2007 (UTC)[reply]
Thanks. Eran 11:16, 21 May 2007 (UTC)[reply]

The above was a bad fix

[edit]

... because it hardcoded the elements it would push to the left. The correct solution is:

#p-navigation li {
position:relative;
right:10px;
}

I'm proposing this, because this CSS is used in some gadgets now, and when there are other elements in the sidebar of a wiki using them (like Wikimania2008 wiki), the LIs won't sort up. Huji 12:37, 22 April 2008 (UTC)[reply]