Try this (a little css "hack")
but as I always say: it is not he "proper" way of doing it but it works
replace your list_top div in frontend.css
You had:
Replace with:
Code: Select all
#list_top {
position: relative; /* added: both IE and FF see this */
height: 15px;
top: 16px; /* added: both IE and FF see this, but IE puts it 16 px lower then the base line */
# top: 0px; /* added: only IE sees this and puts the menu were you want, at the baseline */
}
Did it on
http://www.wyler-consulting.ch/index.php , works in FF 1.0.4 (you should install the web developer extension from firefox, very usefull) and IE 6.0
These little "hacks" are pretty cool as CSS (C as in cascade) only interprets the last thing it sees. So, you put a "hack" for IE (the # that IE ignores) and he discards the top: 16px and only uses the top: 0px.
Off course, when working you can remove the /* comments */
The only thing to keep in mind is if one day IE complies to W3C CSS rules, you'll have to rewrite the code...
BTW, this is not really a "bug" of phpwcms dev release, It is a CSS issue (to be fixed by W3C and/or FF and/or Microsoft <--- choose who to blame...
I know who I would blame 
)
Cheers