WordPress CSS - Center panel not aligned with Sidebar

Discussion in 'CSS' started by Santa Monica Web, Aug 21, 2009.

  1. #1
    Santa Monica Web, Aug 21, 2009 IP
  2. MYND

    MYND Active Member

    Messages:
    136
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    60
    #2
    If I understand correctly, you're absolutely positioning the sidebar wrap which causes it position over the container (white panel, you say).

    Open your stylesheet (i.e. /abstractia-10/layout.css):

    Remove position:absolute property from #sidebarholder and float:right; property from #sidebar rule. Like this:

    
    #sidebarholder {
    left: 0pt;
    margin-left: 608px;
    top: 0pt;
    width: 182px;
    }
    
    #sidebar {
    display: inline;
    margin-top: 20px;
    width: 182px;
    }
    
    
    Code (markup):
     
    MYND, Aug 21, 2009 IP
  3. Santa Monica Web

    Santa Monica Web Guest

    Messages:
    39
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks, that worked perfectly but also shifted all the sidebar content down on selected pages, like Archives. You can't see it right now because I reversed the changes but let me know if you can diagnose it. I really appreciate your help.
     
    Santa Monica Web, Aug 28, 2009 IP