
05-06-2009
|
|
|
|
Re: Side Navigation works in Firefox but not in IE7
Pythonista wrote on Tue, 5 May 2009 10:39:01 -0700:
> Wow! I haven't had something related to code make me brake out laughing
> for a while. It's just so random! Anyway, I tried changing the <i>
> tags to <em>
> tags. That (obviously) did not work.
> Then I put this in: #main p {overflow: auto;}
> and it worked, but now the text doesn't go around the book.
> I admit, I'm not a CSS expert, in fact I'm probably still approaching
> average, do you have any suggestions for what I could do to get the
> text going around the book (like before) without having the problems
> that existed previously?
I'm no expert either, but from my Googling yesterday the only solution I
could find was to not have italicised text. It doesn't matter how you
italicise it (<i>, <em>, or CSS attributes), it's the font itself that
appears to cause the problem - what appears to happen is that the area
occupied by the text and extended down to the bottom of the browser has a
hidden overlay across the entire page, so your hovers and links are rendered
useless because they are under this invisible layer.
Using tables instead of divs would solve the issue but that's hardly a great
idea, or possibly reordering the divs so that the menus come after the
paragraph but are still floated left might work. Unfortunately I don't have
time to experiment with this any more, sorry.
--
Dan
|