0

Energyshop.se は、Chrome、IE8-9、Firefox では見栄えがしますが、友人の 1 人が気づいたように IE7 では見栄えがしません。メニューとフッターの両方が、水平ではなく垂直になりました。

これを解決するにはどうすればよいですか?

ヘッダーとフッターメニューのトップメニューの CSS は次のとおりです。

#main_menu {
font-family:Calibri;
font-size:24px;
background-color:#1ca46e;
height:45px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
width:850px;
margin-left:22px;
margin-bottom: -35px;
margin-top: -30px;
top:100px;
}

#main_menu a {
    color:#ffffff;
    height: 10px;
    display: block;
    float: left;
    width: 105px;
    text-align: center;
    margin-top: 8px;
    margin-right: 10px;
    margin-bottom: 0;
    margin-left: 2px;
    background-color:#1ca46e;
    border-top-width: 1px;
    border-right-width: 3px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: none;
    border-right-style: solid;
    border-bottom-style: none;
    border-left-style: none;
    border-right-color: white;
    padding-top: 2px;
    padding-right: 12px;
    padding-bottom: 2px;
    padding-left: 5px;
    font-family: Calibri;
    vertical-align: middle;
    height:28px;
}

#main_menu a:hover {
    color:#555;
}

#main_menu li.current-menu-item a {
    text-decoration:underline;
    font-weight:bold;
    text-shadow: 2px 2px #403F40;
    }

#footer_menu {
    position:relative;
    text-align:center;
    height:75px;
    font-family:Calibri;
    margin-top:25px;
    margin-left:50px;
    color:#9221a6;
    font-size:22px;
    font-weight: bolder;
}
#footer_menu a {
    margin:5px; 
    margin-top:5px;
    margin-bottom:5px;
    color: #9221a6;
    float:left;
}
4

3 に答える 3

1

「display: inline;」を追加してみてください。あなたのフッターに..それはあなたを助けるはずです。そうでない場合は教えてください。何か他のことを理解しようとします;)

于 2013-02-13T15:57:17.390 に答える
0

list-style-type:none;IE7 では (8 ではなく)、<li>要素の箇条書きのみを削除するcss プロパティを使用しているようです...

それを解決するためにcssプロパティを追加してみてくださいdisplay:inline;...

于 2013-02-13T15:55:34.613 に答える
-1

<!DOCTYPE html> あなたのウェブサイトの doctype に基づいて、いくつかのhtml5唯一の機能を使用していると思います。それが適切にレンダリングされない
理由かもしれません。 この問題を解決する 1 つの方法は、 IE7

http://www.modernizr.com/

幸運を

于 2013-02-13T15:57:13.120 に答える