Jiten rash (away) Posted April 5, 2013 Share Posted April 5, 2013 any one has any idea of creating full width footer? and full centre column . Link to comment Share on other sites More sharing options...
vekia Posted April 7, 2013 Share Posted April 7, 2013 in this case you should edit css styles of your store. Which version of prestashop you use? Link to comment Share on other sites More sharing options...
Jiten rash (away) Posted April 7, 2013 Author Share Posted April 7, 2013 1.5.3 Link to comment Share on other sites More sharing options...
ajensen27 Posted April 10, 2013 Share Posted April 10, 2013 Also interested in this but I just want to expand the color but keep the placement of the blocks... possible? Link to comment Share on other sites More sharing options...
vekia Posted April 10, 2013 Share Posted April 10, 2013 for change width to 100% you need to: <div id="footer" class="grid_9 alpha omega clearfix"> {$HOOK_FOOTER} </div replace this code - move it before the: </body> tag you need also to remove grid_9 from class="" then in global css change #footer width to 100% Link to comment Share on other sites More sharing options...
ajensen27 Posted April 12, 2013 Share Posted April 12, 2013 Thanks Vekia... I tried playing around with some of the code in the footer.tpl file but it didn't quite work. Could you give the exact code we need to replace and the code we need to replace it with? I appreciate the help. Thanks! Link to comment Share on other sites More sharing options...
vekia Posted April 12, 2013 Share Posted April 12, 2013 sure, you're talking about default template? Link to comment Share on other sites More sharing options...
ajensen27 Posted April 12, 2013 Share Posted April 12, 2013 Yup! I basically want it to look like the bottom of these Prestashop forums. Where everything is still centered but the color of the footer goes all the way to the sides of the page. Thanks for the quick response!! Link to comment Share on other sites More sharing options...
vekia Posted April 12, 2013 Share Posted April 12, 2013 You need to modify footer.tpl file. You can read tutorial full-width footer in prestashop modified footer.tpl: {if !$content_only} </div> <!-- Right --> <div id="right_column" class="column grid_2 omega"> {$HOOK_RIGHT_COLUMN} </div> </div> <!-- Footer --> </div> <div id="footer" style="width:100%; clear:both; display:block; overflow:hidden;"> <div style="width:980px; display:block; margin:auto; clear:both;"> {$HOOK_FOOTER} {if $PS_ALLOW_MOBILE_DEVICE} <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p> {/if} </div> </div> {/if} </body> </html> i used style="" tag for footer div and for additional one, but you can create own classes in global.css 2 Link to comment Share on other sites More sharing options...
ajensen27 Posted April 12, 2013 Share Posted April 12, 2013 That did it! Thank you very much for your help Vekia Link to comment Share on other sites More sharing options...
vekia Posted April 12, 2013 Share Posted April 12, 2013 so, now i can mark this thread as solved. Thanks for information, now you can create full width templates ;-) regards 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