Косяк в меню в разных браузерах

Приветствую.

Подскажите, профи, такая вот беда.
Ставлю сайт на WordPress но выходит косяк с отображением меню в разных браузерах, меню сдвигается по вертикали на 5-10 пикселя 🙁 То ИЕ и Макстон отображают всё ровно, тогда Opera и Crome косят, ну либо наооборот

Возможно ли вообще в принципе подружить их как-то в данной ситуации или это нереально?….

Ссылка на сайт вот, там только одна страничка сейчас, но не это важно. На данный момент подогнано под ИЕ, но это же не дело….

А вот кусок кода CSS, который я мучал в попытке привести всё к равновесию:

 /* Header */

#navigation h1 { margin-left: 144px; padding-top: 108px; float: left; display: inline; text-transform: lowercase; font-size: 35px;}
#navigation h1 a { color: #FFFFFF;}

/* Navigation */

#navigation ul { list-style-type: none; list-style-image: none; float: left; display: inline; padding-top: 33px; padding: 0 0px 0 0; margin-left: 20px; }

#navigation li { float: left; }

#navigation li a:link,
#navigation li a:visited
{
    float: left;
    color: #FFFFFF;
    display: inline;
    padding: 10px 10px;
    margin-right: 1px;
    height: 21px;
    font-size: 13px;
    margin-top: 4px;
    font-weight: bold;
    
    
}

#navigation li a:hover,
#navigation li a:active
{
    color: #FFFFFF;
    font-size: 13px;
    margin-top: 4px;
    background-image: url(images/nav-bg.gif);
        font-weight: bold;
}

#navigation li.active a
{
    color: #555555;
    background-color: #ffffff;
}

Правил вот этот кусок:

#navigation h1 { margin-left: 144px; padding-top: 108px; float: left; display: inline; text-transform: lowercase; font-size: 35px;}

Спасибо за внимание.

Смотреть в комплексе надо. И не только #navigation
А и #headerbg и .page_item и .slogan
А подружить можно все, сначала к опере и лису,
потом + костыли для ie

Немного переделал, Опера теперь корректно отображает, в ИЕ меню сползает немного вниз.

Вот код Style.css

/* Links */

a:link { text-decoration: none; color: #56AFED; }

a:visited { text-decoration: none; color: #56AFED; }

a:hover, a:active { color: #F5C55E; }

/* Headings */

h1, h2, h3, h4, h5, h6 { font-weight: normal; margin: 20px 0 10px; }

h1 { font-size: 32px; margin-bottom: 0px; margin-top: 10px;}

h2 { font-size: 28px; }

h3 { font-size: 24px; }

h4, h5, h6 { font-size: 20px; }

/* Other Html Elements */
.titles { font-weight: normal; border-bottom-width: 0; font-size: 24px; text-decoration: none; underline: none;}
.titles a:link, .titles a:visited, .titles a:active {
text-decoration: none;
underline: none;
font-size: 24px;
font-weight: normal;
border-bottom-width: 0;
}

pre, blockquote 
{
    overflow: auto;
    padding: 0 10px;
    margin: 20px 30px;
    line-height: 1.8em;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

pre:hover, blockquote:hover
{
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
}

pre { padding-top: 10px; padding-bottom: 10px; }

code { color: #779900; font-family: Consolas, Verdana, "Courier New", Sans-Serif; }

ul, ol { line-height: 2.0em; }

ul { list-style-image: url(images/bullet.gif); }

abbr, acronym { font-style: normal; border-bottom: 1px dotted #333333; cursor: help; }

del { text-decoration: line-through; color: #999999; }

ins { text-decoration: none; color: #009977; }

/* Structure */

body
{
    margin: 0;
    padding: 0;
    color: #222222;
    background-repeat: repeat-x;
    background-position: top left;
    background-color: #20305A;
    background-image: url(images/bg.gif);
    background-repeat: repeat-x;
    font: normal 76% "Trebuchet MS", "Lucida Grande", Verdana, Georgia, Sans-Serif;
}

#wrapper2 {
width: 950px;
margin-left: auto;
margin-right: auto;
margin-top: 0px;

}


#navigation
{
    width: 950px;
    margin-left: auto;
    margin-right: auto;
    float: right;
    margin-top: 0px;
}
#headerbg {
background-image: url(images/header.gif);
background-repeat: no-repeat;
background-position: center;
width: 950px;
height: 215px;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
float: left;
}

#wrapper
{
    clear: both;
    float: left;
    width: 100%;
    color: #555555;
    background-color: #FFFFFF;
    padding-top: 0px;
}

#content-wrapper
{
    width: 60%;
    float: left;
}

#content
{
    float: left;
    padding: 0 0px 10px 30px;
}

#sidebar-wrapper
{
    width: 35%;
    float: right;
}

#sidebar
{
    float: right;
    padding: 0px 15px 10px 10px;
    width: 210px;
    margin-right: 15px;
    margin-top: 0px;
}

#footer
{
    clear: both;
    float: left;
    width: 930px;
    text-align: left;
    padding-left: 20px;
    color: #56AFED;
    font-size: 11px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    background-image: url(images/footer.gif);
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    height: 82px;
    }

#footer a {
    color: #56AFED;
    font-size: 11px;
    }

#footer a: visited {
    color: #56AFED;
    }
#footer a:hover {
    color: #56AFED;
    }
#extras
{
    float: left;
    width: 780px;
    color: #C7AA92;
    text-align: left;
    padding: 0 10px 10px;
    margin: 10px 12px 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Header */

#navigation h1 { margin-left: 144px; padding-top: 118px; float: left; display: inline; text-transform: lowercase; font-size: 35px;}
#navigation h1 a { color: #FFFFFF;}

/* Navigation */

#navigation ul { list-style-type: none; list-style-image: none; float: left; display: inline; padding-top: 33px; padding: 0 0px 0 0; margin-left: 20px; }

#navigation li { float: left; }

#navigation li a:link,
#navigation li a:visited
{
    float: left;
    color: #FFFFFF;
    display: inline;
    padding: 10px 10px;
    margin-right: 1px;
    height: 21px;
    font-size: 13px;
    margin-top: 4px;
    font-weight: bold;
    
    
}

#navigation li a:hover,
#navigation li a:active
{
    color: #FFFFFF;
    font-size: 13px;
    margin-top: 4px;
    background-image: url(images/nav-bg.gif);
        font-weight: bold;
}

#navigation li.active a
{
    color: #555555;
    background-color: #ffffff;
}

/* Wrapper */

#wrapper a:link { font-weight: bold; }

#wrapper a:visited { font-weight: bold; }

#wrapper a:hover, #wrapper a:active { }

/* Content */

#content .post-title a { border-bottom-width: 0; }

#content .post p.img { float: left; margin: 0 15px 0 0; }

#content .post p.img img { padding: 8px; border: 1px solid #d0d0d0; background-color: #eeeeee; }


/* Sidebar */

.sideblock
{
    padding: 5px 10px;
    margin-bottom: 20px;
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
}

.post-wrapper {
padding-left: 30px;
padding-right: 30px;
padding-top: 10px;
padding-bottom: 0px;
width: 593px;
margin-left: -20px;
margin-bottom: 0px;
float: left;
}


.sideblock ul { }

.sideblock h3 { margin-top: 5px; font-size: 16px; color: #A2A2A2; padding-top: 4px; padding-left: 10px; font-weight: bold; display: block; border-bottom: 2px solid #DBDBDB; }

#sidebar dt { margin: 0; padding-top: 5px; font-weight: bold; color: #666666; }

#sidebar dd { margin: 0 0 5px; padding-bottom: 5px; line-height: 1.8em; }

#sidebar dd a:link { border-bottom-width: 0; font-weight: normal;  border-bottom: none; text-decoration: none;}

#sidebar dd a:visited { border-bottom-width: 0; font-weight: normal; border-bottom: none; text-decoration: none; }

#sidebar dd a:hover, #sidebar dd a:active { border-bottom: none; text-decoration: none;}

/* Extras */

#extras h6 { font-size: 14px; text-transform: uppercase; color: #555555; }

#friends
{
    float: left;
    width: 150px;
    margin-left: 20px;
    margin-right: 10px;
}

#links
{
    float: left;
    width: 275px;
    margin-right: 50px;
}

#about
{
    float: left;
    width: 250px;
    margin-right: 20px;
}

#friends ul { padding-left: 20px; }

#links dl, #links dt, #links dd { margin: 0; padding: 0; }

#links dt { font-weight: bold; padding-top: 5px; }

#links dd { margin-bottom: 5px; padding-bottom: 5px; border-bottom: 1px dotted #999999; }

    /* Comments Styling */
#commentlist li {
margin-bottom: 1.5em;
padding-bottom: 1em;
border-bottom: 1px solid #700000;
}

#commentform {
margin: 1em 0;
background: #FFFFFF;
width: 280px;
}

#commentform textarea {
background: #f8f7f6;
border: 1px solid #d6d3d3;
width: 280px;
}
#commentform textarea:hover {
background: #FFFFFF;
border: 1px solid #d6d3d3;
}
#commentform textarea:focus {
background: #ffffff;
border: 1px solid #939793;
}

#commentform #email, #commentform #author, #commentform #url {
font-size: 1.1em;
background: #f8f7f6;
border: 1px solid #d6d3d3;
width: 280px;
}
#commentform #email:hover, #commentform #author:hover, #commentform #url:hover {
font-size: 1.1em;
background: #ffffff;
border: 1px solid #d6d3d3;
width: 280px;
}
#commentform #email:focus, #commentform #author:focus, #commentform #url:focus {
font-size: 1.1em;
background: #ffffff;
border: 1px solid #939793;
width: 280px;
}
#commentform input{
margin-bottom: 3px;
}

.date {
    background: url(images/date.gif) no-repeat;
    height: 54px;
    margin-bottom: 0px;
    width: 54px;
    text-align: center;
    float: left;
    margin-top: 15px;
}
.date .month {
    display: block;
    color: #FFD7C2;
    padding: 2px 0px;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    margin-top: 2px;
    font-weight: bold;
    margin-bottom: 3px;
}
.date .day {
    display: block;
    color: #FFFFFF;
    font: 2.3em Georgia;
    padding-top: 0px;
    text-align: center;
    margin-top: -12px;
}

#left {
    width: 60px;
    float: left;
}

.slogan {
font-size: 16px;
color: #8DA2D8;
text-transform: lowercase;
margin-left: 144px;
margin-bottom: 2px;
float: left;
}

В header.php есть такой код

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <!--[if lt ie 7]>    
        <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_directory'); ?>/ie-win.css" />
    <![endif]-->

Я так подозреваю, что это те самые костыли, но что-то не так работает наверно

Код ie-win.css вот:

#navigation { float: left; }

#navigation ul { float: right; }

#navigation li.active a:link,
#navigation li.active a:visited
{
    color: #555555;
    background-color: #ffffff;
}

#content-wrapper { width: 58%; }

#content pre { width: 360px; overflow: hidden; }

#wrapper h3.post-title a:link, 
#wrapper h3.post-title a:visited
{
    border-bottom-width: 0;
}

#extras { padding-right: 0; margin-right: 0; margin-left: 8px; padding-left: 0; }

#extras #friends ul { padding-left: 0; margin-left: 20px; }

#extras #links { width: 250px; }

Что тут можно сделать?:rolleyes:
Спасибо за внимание.

Anonymous
Отправить
Ответ на: