移动菜单导航(保证金?)

时间:2012-07-25 22:07:59

标签: html css styling

我需要将此导航菜单移到内容框上方和徽标下方。换句话说,订单应该是:(1)徽标,(2)菜单和(3)内容框。

我尝试对#navigation的CSS进行各种边距调整,但无济于事。

我该怎么做?

网址:http://ec2-174-129-169-80.compute-1.amazonaws.com/

见截图:

Screenshot

2 个答案:

答案 0 :(得分:1)

您可以像这样添加top: -57px;到#navigation CSS:

#navigation {
    position: relative;
    top: -57px;
    clear: both;
    margin-bottom: 3em;
    display: none;
    font: 14px/14px sans-serif;
    border: 1px solid #D9D9D9;
    background: white;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(whiteSmoke));
    background: -webkit-linear-gradient(white, whiteSmoke);
    background: -moz-linear-gradient(center top, white 0%, whiteSmoke 100%);
    background: -moz-gradient(center top, white 0%, whiteSmoke 100%);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

答案 1 :(得分:1)

请制作一个jsFiddle或发布您的代码。在没有看到代码的情况下,首先想到的是您将#navigation放在内容区域中。如果是这样的话,那么:

#navigation { margin-top: -50px; }

如果#navigation绝对定位:

#navigation { top: -50px; }