Grabyz Posted November 19, 2020 Share Posted November 19, 2020 (edited) Hello all, thank you in advance for your precious support. I am trying, to no avail, to remove the white section at the bottom of my page! Can someone help me? My website: https://www.grabyz.it/ The section in question: All the best, Marco Edited November 19, 2020 by Grabyz (see edit history) Link to comment Share on other sites More sharing options...
Grabyz Posted November 23, 2020 Author Share Posted November 23, 2020 Up Can anyone help me? Link to comment Share on other sites More sharing options...
ZORANVEDEK Posted November 24, 2020 Share Posted November 24, 2020 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 More sharing options...
RoelH Posted November 25, 2020 Share Posted November 25, 2020 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now