Jump to content

Left and right column position


Recommended Posts

Hello to all,

 

I have been using the default prestashop theme and what I want to do is to move both left and right columns right on top. In the middle would be the header.

Any suggestions?

 

Thank you in advanced!

Link to comment
Share on other sites

in the header.tpl file located in your theme directory you've got:

 

<!-- Header -->
  <div id="header" class="grid_9 alpha omega">
   <a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">
 <img class="logo" src="{$logo_url}" 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>
   <div id="header_right" class="grid_9 omega">
 {$HOOK_TOP}
   </div>
  </div>

 

move it to the:

 

<div id="center_column" class=" grid_5">

(just paste it right after this)

 

and don't forget to change grid_9 to grid_5 in the classess for #header div and child (sub div)

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...