Jump to content

Very strange problem about layout


socksz

Recommended Posts

Hi there,

 

I've installed Black & White theme. This: http://ipno.tik.free...mes-prestashop/

 

If you check for the HTML code with Firebug you'll see the left and the right column are inside the center column.

 

I want to put them outside the center column (I would hide the left column). How can I solve it?

 

This is the header.tpl:

 

		<div id="top">
	 <div id="header">
	   <h1 id="logo">
		 <a href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">
		  <img class="logo" src="{$img_ps_dir}logo.jpg?{$time}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />
		 </a>
	   </h1>
	  {$HOOK_TOP}
	 </div>
	</div>

	<div class="page">

				<!-- Center -->
				<div id="center_column">
	{/if}

 

and this the footer.tpl

 

   {if !$content_only}
<div class="clear"></div>
<!-- RIGHT COLUMN -->
{if $page_name != 'index'}
<div id="right_column">
 <div id="grid">
  <ul id="right_column_container">{$HOOK_RIGHT_COLUMN}</ul>
 </div>
</div>
{/if}

</div>

</div>
</div>

<!-- FOOTER -->
<div id="footer">
<div class="path" id="block_various_links_footer">{$HOOK_FOOTER}</div>
</div>
{/if}

<!-- LEFT_COLUMN MODULES FIXE WIDTH GRIDE -->
{literal}
<script>
 $(function(){

  $('#grid').masonry({
	singleMode: true,
	itemSelector: '.block'
  });

});
</script>
{/literal}
</body>
</html>

 

Where's the left column? It's magician? :)

 

 

Thanks!

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...