Page 1 of 1

[solved] how to fix this menu issue?

Posted: Sat Nov 21, 2009 8:01 am
by pmolds
I installed the system in my website whith IE6 and it is normal, but after finishing it, I told somebody to open it with IE7 and Firefox,but the menu is mixed up, my website is :plastic mold, could you please check it where the problem is and let me know how to fix the issue, thanks
I also put two photos in here for you reference, thanks.

IE7
Image

Firefox
Image

Please give me a hand.
Thank you very much

Re: how to fix this menu issue?

Posted: Sat Nov 21, 2009 9:36 am
by Peciura
Edit style sheet :

#header{
height:111px;
float:left;/*not necessarily needed */
}

Re: how to fix this menu issue?

Posted: Sat Nov 21, 2009 11:23 am
by pmolds
Peciura, thanks for your reply first, your mean is that delete the sentence "height:111px;", right?

Re: how to fix this menu issue?

Posted: Sat Nov 21, 2009 2:36 pm
by Coldman
Did Pecurias suggestion solve your problem?

You can try to add this in your template head

Code: Select all


<!--[if lte IE 7]>
<style type="text/css">
#header{float:left;/*not necessarily needed */}
</style>
<![endif]-->

Re: how to fix this menu issue?

Posted: Sat Nov 21, 2009 5:37 pm
by Peciura
pmolds: Yes delete that line. or set it to min-height instead of just height.

And more, as long as width of  div#header is 100% (960px) float will not make it to float :) only its dimentions will be set to wrap content (table in your case).

More good reading can be done at http://matthewjamestaylor.com/blog/ulti ... xel-widths

Re: how to fix this menu issue?

Posted: Thu Nov 26, 2009 1:13 pm
by pmolds
Thanks all.
The problem is resolved.