Hello,
I need to delete the shadow of the bottom part (see pict.).
Thank you in advance for your help.
Here is the code
box-shadow: 2px -3px 3px black, -2px 0px 3px black;
Hi! That shadow is being created by the second part of your rule, so if you delete that part it should work.
Try this:
box-shadow: 2px -3px 3px black;
tip: within the box-shadow rule you can have many different shadows, each separated by commas
@fermercadal Thank you very much