Quote:
Originally Posted by idogfy
Wild guess, if it is not the CSS then check the html structure
You may try to put the sidebar div inside container
Now it is:
</div><!-- #container -->
<div id="primary" class="widget-area" role="complementary">
.......
</div>
</div><!-- #main -->
Try to move the </div><!-- #container -->
like:
<div id="primary" class="widget-area" role="complementary">
.......
</div>
</div><!-- #container -->
</div><!-- #main -->
You may need to tweak a template or something to do it
|
You got it!! Thanks a ton for looking at that
Indeed I tweaked something in the HTML previously and a mistake in doing that (had the same </div><! container! > twice in the code) that caused this to happen
Now the sidebar appears as it should!