• http://encinitaslibfriends.org/wp
    How can I make the header/menu line up with the white?
    I have tried everything and nothing is moving.
    I have tried ‘Container’ and the ‘BrandImg’ to line things up for weeks and I can not get it to line up.

    I have been told to move the margin-right: -250;
    It doesn’t matter if I zero it out use “px” or nothing – nothing moves.

    Where can I move those in CSS?

Viewing 4 replies - 1 through 4 (of 4 total)
  • You’re using custom CSS in the admin, right? I think this block will be in that CSS:

    #wrapper {
      background: #fff;
      margin-top: 20px;
      padding: 5px;
    }

    Delete or comment out the padding line from that block:

    #wrapper {
      background: #fff;
      margin-top: 20px;
      /* padding: 5px; */
    }

    That will get rid of the white gap. Then, your header and menu are still wider than your main content area, which is 920px. I’m not sure how that happened but a quick fix is to bring your header image down to 920px wide and adjust your menu like so:

    #access {
      width: 920px;
    }
    Thread Starter meoop

    (@meoop)

    Thank you…the mountain has moved!
    I think now I just need to adjust my header and reload.
    Thanks again, Zoe!

    Thread Starter meoop

    (@meoop)

    The header finally lined up on the home page, but it is bumped over to the right on all the other pages.

    Those are using a different image file. Hard to say why – that’s something that I can’t really tell from what I can see looking at the site. Something in the templates or theme settings, maybe.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Container? Or BrandImg – Twenty-ten CSS’ is closed to new replies.