Search code examples
drupaldrupal-6drupal-theming

Why this layout issue?


You can see in this page: http://www.indiacustomercare.com/blogs/admin there is layout issue for some time but initially it wasn't there. I've not changed anything in the gardland code.

So in this page #sidebar-right is within #center

If page.tpl.php is being called then #center will occur outside #sidebar-right and I don't have any front*tpl files.

What could be the reason of this?

I'm sure there is no problem with the template files because my localhost version is working fine with same files(including core/template etc) only that little database settings may be different and lacks 4-5 articles compared to this live site.


Solution

  • Have problem with this tag (miss a "div" tag before node list)

    <div class="clear-block"> 
       <div class="item-list"></div> 
    <div id="node-209">...</div>
    

    Find and fix it in your page.tpl.php

    <div class="clear-block"> 
       <div class="item-list"></div>
    **</div>**
    <div id="node-209">...</div>