Viewing 3 replies - 1 through 3 (of 3 total)
  • Usually when I see something like that, where the sidebar comes under the main content instead of on the side, it means that there’s a missing closing DIV tag somewhere in the main content. That is, every time you add an opening DIV tag:

    <div>

    there should be a matching, closing DIV tag that follows somewhere later:

    </div>

    Check the code on the page carefully and make sure each opening DIV has a closing DIV.

    OK, I took a closer look at your code, and you have this:

    <div style="border: thin #000000 solid; width:650px;">
    <object> ... </object>

    What you need to do is put a closing DIV tag after the closing OBJECT tag, so it looks like this:

    <div style="border: thin #000000 solid; width:650px;">
    <object> ... </object>
    </div>

    Thread Starter Antonio Bonilla

    (@antonio-bonilla)

    That did it. Thanks

    You guys are awesome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar widget out of place’ is closed to new replies.