botashi Posted March 15, 2010 Share Posted March 15, 2010 Hellomy slider is displayed on Center-colum, so he is a space left blank (left-column), Incidentally. is my template has two columns - MY QUESTION:How to make my slideshow occupies the entire width of my page (chad space "left-column space +" center column ").is what I have to create a div? Hook?best regardsANSWER : http://www.t-prod.net/blog/e-commerce-site-marchand/prestashop-page-daccueil-1-colonne-et-reste-en-3-colonnes Link to comment Share on other sites More sharing options...
Dharani Posted March 15, 2010 Share Posted March 15, 2010 comment the line hook left column in the header.php in the root folder of the prestashop Link to comment Share on other sites More sharing options...
shacker Posted March 15, 2010 Share Posted March 15, 2010 Hellomy slider is displayed on Center-colum, so he is a space left blank (left-column), Incidentally. is my template has two columns - MY QUESTION:How to make my slideshow occupies the entire width of my page (chad space "left-column space +" center column ").is what I have to create a div? Hook?best regards yes, and in the global.css file of your theme, change the width of the center column Link to comment Share on other sites More sharing options...
botashi Posted March 15, 2010 Author Share Posted March 15, 2010 if I change the width of the central conne. it will change all other pages. no? Link to comment Share on other sites More sharing options...
botashi Posted March 15, 2010 Author Share Posted March 15, 2010 comment the line hook left column in the header.php in the root folder of the prestashop what does e have to put in the header.php. Can you tell me if you please Link to comment Share on other sites More sharing options...
razaro Posted March 15, 2010 Share Posted March 15, 2010 If you want to hide left column from homepage in header.tpl in your theme folder use this if statment {if $page_name != 'index'} {$HOOK_RIGHT_COLUMN} {/if} Link to comment Share on other sites More sharing options...
botashi Posted March 17, 2010 Author Share Posted March 17, 2010 thank's Razaro but it does not work.I downloaded the slideshow for Kamel Kelkoul template BlackWhitehttp://ipno.tik.free.fr/blackwhite/I would insert it into the page. and it occupies the entire width.but wherever it is placed in center-column … even emptying the left-column. Link to comment Share on other sites More sharing options...
armandobasile Posted September 14, 2012 Share Posted September 14, 2012 if you want set center_column width to max, you could use: <!-- Left --> {if $page_name != 'index'} <div id="left_column" class="column grid_2 alpha"> {$HOOK_LEFT_COLUMN} </div> {/if} <!-- Center --> {if $page_name != 'index'} <div id="center_column" class=" grid_5"> {else} <div id="center_column" class=" grid_9" align="center"> {/if} <!-- Right --> {if $page_name != 'index'} <div id="right_column" class="column grid_2 omega"> {$HOOK_RIGHT_COLUMN} </div> {/if} looking in grid_prestashop.css can see: .container_9 .grid_5 {width:535px;} .container_9 .grid_9 {width:979px;} so on home page center column have 979px width, centered, on other pages have normal width Link to comment Share on other sites More sharing options...
Recommended Posts