• Resolved myRobertForums

    (@myrobertforums)


    Using WordPress 3.0.5 (read too many error posts about 3.1, so didn’t upgrade).
    Theme: Twenty-Ten
    Firefox and IE
    https://my-neighborhoods.net

    This morning my right column on my homepage showed up at the bottom of the page.

    I did edit the styles.css page, but did not touch any DIV elements.

    Double-checked all of my comments tags /* */ but all are in pairs.

    Things were working fine until some automatic updates.

    All of my pages are one-column except the homepage.

    I had altered the Portfolio page by increasing the width to accommodate contents.

    Can’t think or find anything else.

    Thanks in advance!
    folsombob

Viewing 2 replies - 1 through 2 (of 2 total)
  • This morning my right column on my homepage showed up at the bottom of the page.

    what were your last edits to style.css?

    there is a broken style keeping the formatting to be applied to #primary:

    /* I ADDED THIS CODE TO MOVE MARGIN OF CONTENT TO THE LEFT */
      /*  it was margin: 0 280px 0 20px; */
    
    .page-id-126 #content {
    	float: right;
    	margin: 0 0 0 -140px;
    }
    
    }

    the second useless } breaks the style following after.

    you could replace it with:

    #content {
    	margin: 0 280px 0 20px;
    }

    which, imho, is missing to get the front page to show with sidebar.

    Thread Starter myRobertForums

    (@myrobertforums)

    Thank you!!

    No matter how much I looked, I did not see that trailing }

    I had to fidget around a bit to get everything else lined up again, but it is back to “normal” — for now.

    folsombob

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Another right-column missing case…’ is closed to new replies.