Forum Replies Created
-
In reply to: Dashboard left bar menu not displaying in IE
They forgot to put wrap it all in a div like they did all the other pages.
I think this works:
In bb-adminthemes.php:
add:
<div class="wrap">
on line 119 (above Manage Themes header)add:
</div>
on line 158 (after</table>
and</div>
)In reply to: Dashboard left bar menu not displaying in IEHey yeah, you’re right. ‘display:inline;’ does work, however the spacing and layout is still a little off.
With both ‘solutions’ though, my Appearance (Manage Themes) Admin window is messed up. How’s yours looking?
In reply to: No Setting ScreenIn reply to: Dashboard left bar menu not displaying in IEI’m having the exact same issue too, although I’m using bbpress 1.0.2. IE6 it’s missing, FF 3.x works.
From what I’ve gathered, its an issue with #bbAdminMenu negative margin in the bb-adminstyle.css file.
I can’t seem to figure anything out that fixes it (I can get it to show, but formatting is awful) and I really don’t want to have to dive into the actual markup.
Edit: Just found a solution/hack
Due to the IE6 double margin bug, you’ll need to do a little css hacking. In bb-adminstyle.css:
add:
_margin-left: -83px;
to ul#bbAdminMenu {…}add:
_margin-left: -25px;
to body.bb-menu-folded ul#bbAdminMenu{…}note the ‘_’ before the css. this is for IE6 to read it but no other browser as far as I know.