Forums

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

Home Forums CSS Sidebar drops below only on Single Post Pages

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #148063
    melanieladue
    Participant

    This site that I finished up designing a few weeks ago suddenly has single post pages with no sidebar – it’s on the bottom…. and since the gal running the blog only says she did the updates, I have no clue if she did something weird to cause it to switch. She says she’s not sure when it really started happening.

    http://thenymelrosefamily.com

    Anyone have any clue how I can assess the problem? Is this even a css forum correct post? Should I be in PHP?

    #148075
    Senff
    Participant

    Without knowing what went wrong (maybe she updated the theme, overwriting all your custom code?), I think it could be fixed quickly if you do this:

    • change width: 700px; to width:100% in #content
    • add width: 700px; and float: left; to .post

    That should fix it for the single pages. But, not knowing much more about the site, I’m not sure what impact it’ll have on the rest of the pages, so check it properly everywhere.

    Or, if you want these fixes only to apply to single pages, adding this piece of code might be easiest:

    .single #content {width:100%;}
    .single .post {width: 700px; float:left;}
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.