• Resolved zacpavs

    (@zacpavs)


    Hi,

    I’m using WP 3.1 and the latest version of Creativix and I was wondering if there was a way I could delete that space between the navigator and the ‘Home’ button in the top right-hand corner. Here’s my website: https://zpportfolio.0fees.net

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • esmi

    (@esmi)

    Remove margin-top: 130px; from:

    #logo {
        margin-top: 125px;
    }
    .navigation {
        background: url("images/navbar.jpg");
        font-size: 12px;
        height: 48px;
        margin-left: 245px;
        margin-top: 130px;
        padding-right: 18px;
        position: relative;
        width: 689px;
        z-index: 6;
    }

    and height: 180px; from:

    #header {
        float: left;
        height: 180px;
        width: 925px;
    }

    in your theme’s CSS.

    Thread Starter zacpavs

    (@zacpavs)

    Hi,

    Thanks for your reply. I made those changes and nothing changed. Here’s my original CSS: `

    .navigation {
    float: left;
    margin-top: -50px;
    }
    #searchbutton {
    background: url(images/search_btn.gif) no-repeat;
    width: 27px;
    height: 28px;
    border: none;
    position: relative;
    top: -5px;
    left: -12px;
    }

    Thanks.

    esmi

    (@esmi)

    .navigation {
    float: left;
    margin-top: -50px;
    }

    is not present in your site’s CSS. I recommend that you try using Firefox with the Firebug add-on to identify what CSS is being applied where.

    Thread Starter zacpavs

    (@zacpavs)

    Hi,

    Well, the file is called ‘ie.css’ so maybe it only applies to Internet Explorer? Can you, like, give me a CSS I should be using if I want to fix the spacing? Much appreciated!

    Thanks.

    esmi

    (@esmi)

    Well, the file is called ‘ie.css’ so maybe it only applies to Internet Explorer?

    That would certainly be a valid assumption to make. Try adding:

    #logo,.navigation {margin-top:0;!important}
    #header {height:auto;!important}

    to the bottom of your style.css file.

    Thread Starter zacpavs

    (@zacpavs)

    Hi,

    Thank you so much for your help! It’s fixed!

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Header’ is closed to new replies.