Jump to content

Why Is My Sidebar Appearing Below Posts ?


pcgameslab

Recommended Posts

There's not enough room for it (check widths and margins) or positioning is missing or inconsistent. This is mostly a math problem.

Edited by niche
Link to comment
Share on other sites

Use a developer tool to "see" what's in each container.

Edited by niche
Link to comment
Share on other sites

I want the sidebar to fill the empty right space as per the requirement of the space used by various gadgets included.You mean that it should be placed outside of id='main'.But it is already out of it.It is within the 'sidebar-wrapper' tag nothing else.

Link to comment
Share on other sites

you have

 

<div id="content-wrapper">

div id="box3">

...

</diiv><!-- end id box3 left side column-->

 

<div id="main-wrapper">

 

<div id="thumb-wrapper">...</div>

<div class="clear"></div>

<div id="box6" class="box6 section">...</div>

<div class="clear"></div>

<div class="latestpost">...</div>

<div class="clear"></div>

 

<div id="main" class="main section">

<div id="sidebar-wrapper">....</div><!-- end id sidebar-wrapper right side column-->

</div><!--end id main -->

 

</div><!-- end id main-wrapper middle column-->

 

</div><!-- end id content-wrapper outer container-->

 

sidebar-wrapper should be the same sibling level as box3 and main-wrapper, below the closing div of #main-wrapper, inside #main it is restricted by it position and width and will never move to right side.

 

You have probably misplaced a closing div, or just placed sidebar-wrapper within the wrong parent container, which not surprising with all the unnecessary c~@##y duplication of css, JavaScript, and id references.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...