Search code examples
cssfooterprestashop

Center footer in prestashop


I'm modifying a theme for my client and I ran into a small problem.

I can't center the footer.

The question is, how can I add a div to the footer as a container witch I would center using CSS? Should I create a new hook or is there a workaround?

Thanks,

here is the url: Link to the store


Solution

  • You can do it easily. There is no need to create a new hook for it. If you need a module, you can create one module if the content of the that section are dynamic. But the simple way is

    1) Open footer file which is themes/your_ps_theme_name_folder/footer.tpl

    2) There you will find footer section along with the footer hook. Place your div container as told by Miljan Puzović and the css to global.css file placed in the css folder of your theme.

    That is the simplest way. Hope this will help