Jump to content

How do remove copyright section in footer - Classical Theme


Grabyz

Recommended Posts

Did you get  this? In theme.css(assets/css/theme.css),  look  for:

.footer-container {
   padding: 35px;
    overflow: hidden;
    background: #F6F6F6;
}

 ...and instead of changing the color(I could never get that to work), drop  an image over it. That's what  worked for me.  I was banging my head against  a wall  trying to  locate which  div was controlling color in some areas, and changing them all in some instances still  left me with  a white background,  so  I finally gave up on that  and just  dropped a background image in there, so  far it's worked every time:
 

.footer-container {
    padding: 35px;
    overflow: hidden;
    background-image: url(your_image.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    background-attachment: fixed;
   
}

...position however you need it,  but that's what  worked for me. 

Link to comment
Share on other sites

No this not the right way to do this. For example, in /themes/classic/assets/css there is a file: custom.css
That is where you put css rules to change your webstore, like background-color and so on. This custom.css overrules the standard theme.css
So when you do not want the copyright sentence "C 2020 - E-commerce-software by PrestaShopTM" in your shop you put the following in custom.css:

.text-sm-center {
    display: none !important;
}

 

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...