Categories

Featured templates

PrestaShop 1.5. How to get rid of white images background

Rating: 5.0/5. From 2 votes.
Please wait...

This tutorial shows how to get rid of white image background.

PrestaShop 1.5. How to get rid of white images background

How_to_get_rid_of_white_image_background-1

  1. Open the admin section, go to Preferences -> Images.

    How_to_get_rid_of_white_image_background-2

  2. In the Image quality section, select Use PNG only if the base image is in PNG format.

    How_to_get_rid_of_white_image_background-3

  3. Open the product in which you need to upload an image with transparent background. We are going to upload the image you can see below. As you can see, it has transparent background. Be sure to use .png format for images that should have transparent background. We have opened Chrome with Inspector in order to show the source of the image. The image has transparent background. However, white borders still show up.

    How_to_get_rid_of_white_image_background-4

  4. In order to get rid of the white background, we need to find the source file for white color. You need to turn off cache and CCC compile section to find out in which files customization should be performed. Go to Advanced Parameters -> Performance, turn off cache and select Keep CSS as original option. Refresh the page.
  5. Now we can see in what file the changes should be made. We have located the white background. Please check this tutorial: Firebug. Mozilla Firefox plugin. You will see how to locate styles using the Firebug developer tool. Basically, it works the same way as the inspector in Chrome.

    In our case, we need to edit the \themes\theme571\css\product.css file, line 19. You need to remove the background:#fff; code there.

    How_to_get_rid_of_white_image_background-5

  6. We have refreshed the page. The white background no longer shows up.

    How_to_get_rid_of_white_image_background-6

  7. Now we need to remove white color in the zoomed image. Hover over the image and press the down arrow in order to move to the correct part of the code. We need to change the background specified on the screenshot.

    How_to_get_rid_of_white_image_background-7

  8. This code is located in js\jquery\plugins\jqzoom\jquery.jqzoom.css file, however we will override this code in the template global.css file. Add div.zoomdiv {background:none!important;} code to override the default value, save the changes, then upload the file. the modified code should look like the one below.
    div.zoomdiv {
    background:none!important;
        }
  9. Refresh the page. We have removed the white background.

    How_to_get_rid_of_white_image_background-8

  10. You can also remove the border. In this case, your code should look like:
    div.zoomdiv {
        background:none!important;
        border:none!important;
      }  
  11. Refresh the page. We have removed the white background in the product image, in the zoomed image. We have also removed the border around the zoomed image.
    How_to_get_rid_of_white_image_background-9

Feel free to check the detailed video tutorial below:

PrestaShop 1.5. How to get rid of white images background

Premium Prestashop Themes
This entry was posted in PrestaShop Tutorials and tagged archived_tutorial, background, images, make, Prestashop, remove, transparent. Bookmark the permalink.

Submit a ticket

If you are still unable to find a sufficient tutorial regarding your issue please use the following link to submit a request to our technical support team. We'll provide you with our help and assistance within next 24 hours: Submit a ticket