• Resolved vbpartners

    (@vbpartners)


    I’ve looked through the archives and tried a few things but no luck…

    trying to move the header up on www. sterlingdiversified . com so that the white background gap disappears.

    anyone can point me in the right direction?

    (I’ve looked at the the css and header, can’t find the right place for it.)

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Looking at your stylesheet, you can edit the following area:

    body{
    color:#000;
    background-color:#fff;
    border:solid 0px #000;
    padding:0px;
    margin:15px 15px 15px 15px;
    }

    I normally don’t recommend using negative values, but I can’t find anywhere else in there that affects it, so change your top margin to -15px like this:

    body{
    color:#000;
    background-color:#fff;
    border:solid 0px #000;
    padding:0px;
    margin: -15px 15px 15px 15px;
    }

    That should do it.

    Thread Starter vbpartners

    (@vbpartners)

    Hi Shayne,

    Thank you soooo much ??

    Really appreciate it… it works!

    No problem. Glad to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Trying to move up the header…’ is closed to new replies.