RemySan Posted November 9, 2015 Share Posted November 9, 2015 (edited) Hey, I have a question about the footer from the standard template of prestashop 1.6. Currently, I have the footer at the whole width of the page but I want to like him just about the width of the top block menu. Can you guys help me? Edited November 19, 2015 by RemySan (see edit history) Link to comment Share on other sites More sharing options...
gabdara Posted November 9, 2015 Share Posted November 9, 2015 In your theme footer.tpl you could change the code: <!-- Footer --> <div class="footer-container"> <footer id="footer" class="container"> <div class="row">{$HOOK_FOOTER}</div> </footer> </div><!-- #footer --> Into: <!-- Footer --> <div class="footer-container container"> <footer id="footer" class="col-xs-12"> <div class="row">{$HOOK_FOOTER}</div> </footer> </div><!-- #footer --> Link to comment Share on other sites More sharing options...
RemySan Posted November 9, 2015 Author Share Posted November 9, 2015 Hello, thanks for your response! When I change the things you said the footer looks a little bit messy. You can see it in the attached files (: Do you know the problem here? This is the code in global.css, .col-xs-12 { width: 100%; } Have a nice day! Link to comment Share on other sites More sharing options...
gabdara Posted November 9, 2015 Share Posted November 9, 2015 It doesn't look like you've made all the changes: <div class="footer-container container"> Link to comment Share on other sites More sharing options...
RemySan Posted November 10, 2015 Author Share Posted November 10, 2015 Thanks for the reaction, I changed the things you said but now the Copyright of Prestashop is on a wired place... Link to comment Share on other sites More sharing options...
gabdara Posted November 10, 2015 Share Posted November 10, 2015 The copyright is weird placed by presta. Try to adjust your CSS with something like: #footer { padding-bottom: 80px; } Link to comment Share on other sites More sharing options...
RemySan Posted November 10, 2015 Author Share Posted November 10, 2015 The copyright is weird placed by presta. Try to adjust your CSS with something like: #footer { padding-bottom: 80px; } This was the solution! Thanks (: 1 Link to comment Share on other sites More sharing options...
Recommended Posts