skip to Main Content

I have added a custom header to my store using the theme display settings, and a custom footer by setting a custom page as the store homepage.
It all works well upto here, but when i move to the category or search pages, only the header is applied to all the pages but the footer goes missing.
Can someone point out how this can be done? I know its possible as i have seen other stores (like this one) where it is done.
There are other posts here which mention that we can do stuff by adding html/css to the header. But this wont work for adding a footer.

Thanks in advance.

2

Answers


  1. var con = getElementsByClass('pagecontainer');
    
    var mvobj = document.getElementById('footer'); //footer can be defined as promotion box
    
    var obj = getElementsByClass('stBadge');
    
    con[0].insertBefore(mvobj,obj[0]);
    
    Login or Signup to reply.
  2. adding a footer that will appear on all pages on ebay store is achieved via store.js..

    Video explaining editing ebay store footer

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search