Jump to content

[SOLVED] How to remove side columns ?


Recommended Posts

Hello, our purpose: remove the side columns for "enlarge" graphically the whole thing and make it more attractive our e-shop.
I know you can remove the modules from the hook, but if you take them out, the width of the center column remains the same, then the result is the same with two empty columns at the sides.

Practically the result that we would get is like that of this store
http://www.it-must-bijoux.fr/

ours is developed in PS 1.4.7.

Thanks in advance to all.
Sorry for grammar mistakes


_________________________________
http://www.kissene.com/en

Link to comment
Share on other sites

You can unhook all column modules, then, in your global.css (themes/themename/css folder) you can add

 

#left_column, #right_column {display:none}

 

and

 

#center_column {width: 100% !important }

 

this is the css only way

 

 

If you want, you can go the template way:

 

find header.tpl in your theme's folder, open it and remove 

 

<!-- Left -->
<div id="left_column" class="column">
{$HOOK_LEFT_COLUMN}
</div>
 
 
then add the center_column thing again in global.css
 
Finally, remove this from footer.tpl 
 
 
<!-- Right -->
<div id="right_column" class="column">
{$HOOK_RIGHT_COLUMN}
</div>

 

 

This completely removes columns, instead of hiding them

  • Like 1
Link to comment
Share on other sites

Only the last question:

 

If we do that, it will appear only for the "home page" or it applies to all pages.

 

Because we want that in the home page the slider appears for the entire width, instead if the customer click on any product we want that the site would run as normal, so the right and left column as usual.

 

With the solution you suggested it could be possible ?

 

Thank you

 

___________________________________

http://www.kissene.com/en

Link to comment
Share on other sites

×
×
  • Create New...