Jump to content

Is it possible to remove footer?


Recommended Posts

You can change line 37 of footer.tpl in your theme's directory to:

{*                        <div class="row">{$HOOK_FOOTER}</div>*}

Adding the {* and *} will cause the code to be ignored, so none of the footer modules will be loaded.

 

You can then add your own footer HTML after this line.

  • Like 1
Link to comment
Share on other sites

It should be possible if you remove the "Categories block", "CMS block" and "My account block" from the "Footer of pages" hook. You'll then need to modify global.css to make the "Stores" section inline. It's hard to explain exactly how here.

Link to comment
Share on other sites

It's the #block_contact_infos section and its contents that you want to restyle. You can find the code near the bottom of global.css. Here's what I see in the default theme:

    .footer-container #footer #block_contact_infos {
      border-left: 1px solid #515151; }
      @media (max-width: 767px) {
        .footer-container #footer #block_contact_infos {
          border: none; } }
      .footer-container #footer #block_contact_infos > div {
        padding: 0 0 0 5px; }
        @media (max-width: 767px) {
          .footer-container #footer #block_contact_infos > div {
            padding-left: 0; } }
        .footer-container #footer #block_contact_infos > div ul li {
          padding: 0 0 7px 4px;
          overflow: hidden;
          line-height: 30px; }
          .footer-container #footer #block_contact_infos > div ul li > span,
          .footer-container #footer #block_contact_infos > div ul li > span a {
            color: #fff;
            font-weight: normal; }
          .footer-container #footer #block_contact_infos > div ul li i {
            font-size: 25px;
            width: 32px;
            text-align: center;
            padding-right: 12px;
            float: left;
            color: #908f8f; }

Good luck.

Link to comment
Share on other sites

  • 11 months later...

You can change line 37 of footer.tpl in your theme's directory to:

{*                        <div class="row">{$HOOK_FOOTER}</div>*}

Adding the {* and *} will cause the code to be ignored, so none of the footer modules will be loaded.

 

You can then add your own footer HTML after this line.

have been looking this whole evening for this. Thanks GBU

Link to comment
Share on other sites

Search for the following near the bottom of global.css:

 

  .footer-container .container {

    padding-bottom: 100px; }

 

Reduce the number 100 until you are happy with the spacing.

 

I tried to but the footer padding increased all the more. My site www.thetruelightministry.org . please help thanks

Link to comment
Share on other sites

I had a look at your website and it seems your theme uses .footer_wrapper instead of .footer_container.  I couldn't find the exact location of the CSS code in Firebug though, since it appears to be inline.  I suggest that you use sitewide search in Dreamweaver or whatever editor you use to find .footer_wrapper and then change the height there.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...