Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] spacing issue

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #167396
    Bones_Jones
    Participant

    total noob here. :)

    i need to line the paragraphs on the left with the logo on top.
    http://goo.gl/MJKHyu

    i can do it by

    .left-sidebar #primary, .fullsize-gallery #primary {
    margin-left: -20px;
    }

    but here is a problem. if i do that then my project page won’t line up because it will also shift -20px on this page.

    http://goo.gl/upL5GK

    what do i have to do to make both pages line up nicely with the logo?

    help!

    thx in advance!

    #167400
    Paulie_D
    Member

    You have this..

    .entry-content {
    margin-top: 10px;
    margin-left: 20px; /* here's your issue */
    }
    

    Be aware this may have knock-on effects on other pages.

    #167404
    Ed
    Participant

    Edit: my solution sucked and use Paulie_D’s instead.

    #167405
    Bones_Jones
    Participant

    thx!

    but what about this page?
    http://goo.gl/5rfpCb

    and this page?
    http://goo.gl/rPGaJV

    #167406
    Paulie_D
    Member

    Again

    .left-sidebar #primary, .fullsize-gallery #primary {
    width: 735px;
    margin-bottom: 0;
    float: left;
    margin-left: -20px; /* why */
    }
    

    I have no idea what page templates you are using,,,but it looks like that’s what you need to address.

    #167408
    Bones_Jones
    Participant

    oh thx! i’m such an idiot. i thought i deleted it that, but apparently i didn’t

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.