adexa Posted August 9, 2010 Share Posted August 9, 2010 Hi all1-) i want to make whole site 1 column but products / product list / product details center and right column how can i show right column only at product pages ?2-) i want to make header and footer full width (100%)3-) i want to add external pages to prestashop do you have any ideathanks alot Link to comment Share on other sites More sharing options...
rocky Posted August 10, 2010 Share Posted August 10, 2010 1) To remove the left column, change lines 54-57 of header.tpl in your theme's directory (in PrestaShop v1.3.1) from: <!-- Left --> {$HOOK_LEFT_COLUMN} to: {*<!-- Left --> {$HOOK_LEFT_COLUMN} *} To display the right column only on product pages, change lines 4-8 of footer.tpl in your theme's directory from: <!-- Right --> {$HOOK_RIGHT_COLUMN} to: {if $page_name == 'category' OR $page_name == 'product'} <!-- Right --> {$HOOK_RIGHT_COLUMN} {/if} You should then modify global.css to adjust the widths of the columns. Change lines 213-217 from: #center_column { width: 556px; margin: 0 0 30px 0; overflow: hidden } to: #center_column { width: 980px overflow: hidden } body#category #center_column, body#product #center_column { width: 768px } Link to comment Share on other sites More sharing options...
adexa Posted August 10, 2010 Author Share Posted August 10, 2010 rocky thank you very very much for your answerits worked very wellif not too much headache ,, do you have any idea about 2 and 3 ? header and footer full width (100%)add external pages to prestashopthank youv ery much again Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now