• I’m still trying to resolve this issue: http://wordpress.org/support/topic/363453?replies=1

    I can’t figure out where in the code I can edit the width of the Latest Post section so that my sidebar content isn’t pushing the section down. This is literally the last thing I need to figure out and it’s driving me crazy. Any help is greatly appreciated. Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • I think you may need to do two things:

    First, at line 314 of style.css, make #front-bottom style like this:

    #front-bottom {
       margin-top:36px;
       float: right;
       width: 680px;
    }

    If that doesn’t work by itself, move the call to get_sideber() and its div class=”clear” to after the ending div for front-bottom.

    Thread Starter djmaru

    (@djmaru)

    Tried both of your suggestions and I get this: http://blog.cavernproductions.com/

    Not sure what’s going on here.

    Looks like you did not move the call to sidebar down far enough. It is under the opening div for front-bottom, not the closing div.

    Thread Starter djmaru

    (@djmaru)

    Hi, sorry. So basically I have to move it down to the fist </div? that I see? that’s what you mean by closing div right? I did that and it still has undesireable effects…

    Thread Starter djmaru

    (@djmaru)

    The other thing that’s weird is that now there’s a line jutting out from the latest posts section.

    Each <div> should have a matching </div>. Find the one that matches the opening div for front-bottom.

    <div class="front-bottom">
       more stuff
       <div for something else
          more stuff
          <div yet another
             yet more stuff
          </div> for yet another
          some more
       </div> for something else
    </div> for front-bottom
    Thread Starter djmaru

    (@djmaru)

    ok thanks. sorry, this is like a second, very foreign language to me. i’ll give this a shot

    Thread Starter djmaru

    (@djmaru)

    well this is the best i’ve been able to get. now it’s getting stuck down by the latest posts section.

    Sorry, I am out of ideas.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Need some help: Sidebar pushing content down’ is closed to new replies.