|
Posted by Martin Jay on 08/28/07 00:18
On Mon, 27 Aug 2007 00:32:23 -0700, Marcus <cms-team@ivi.de> wrote:
>I posted this message twice this year but didn't find the answer.
>
>========================
>We manage the website http://www.itzehoer.de/. The navigation works
>fine in almost any browser, except a small problem in the IE7.
>
>The problem is, that in most cases only the text in the navigation
>seems to be the link (Fahrzeuge, Unfall, ...) , in rare cases (as it
>should be) the whole green row is clickable.
>
>The css is located under http://www.itzehoer.de/source/css/itzehoer.css
I think I've figured out what your problem is. It appears to be
located in one of your CSS browser hacks:
/* Other browsers */
/*/*/
..centercolumn
{
margin-right :164px !important;
margin-right :154px;
margin-left :190px;
}
/* */
This needs to be floated left for IE7, and given a left-margin of 0.
Like this:
/* Other browsers */
/*/*/
..centercolumn
{
float: left;
margin-left: 0;
}
/* */
I don't doubt this will break in other browsers, so you'll need
another browser hack so that only IE7 sees these changes. :)
There's another small problem now: the horizontal scroll bar appears
at the bottom of IE7. You'll need to adjust the '.search' class to
fix that.
--
Martin Jay
Navigation:
[Reply to this message]
|