Hi Themeco Team,
I currently have two issues with X.
- I am running into trouble when trying to add a box shadow and 3D rotation to an image. To start, I’m applying the following CSS to an image and its container:
img {
transform: translate(0,-40px) rotate3d(.1,.500,0,20deg) rotateZ(-2deg);
box-shadow: 5px 25px 60px rgba(0, 0, 0, 0.7) ;
-webkit-box-shadow: 5px 25px 60px rgba(0, 0, 0, 0.7) ;
-moz-box-shadow: 5px 25px 60px rgba(0, 0, 0, 0.7) ;
}
column {
perspective: 1200px;
}
This CSS has helped me achieve the look in the attached screenshot, which is what I was going for.
Unfortunately, the box shadow is being cut off by another container… I’ve tried several possible fixes but haven’t had any luck yet. Can you suggest a solution that will allow the box shadow to expand beyond the container or at least not look like it’s cut off?
- I’m also running issues with the “Angle In” section separators. As you can see from the screenshot, they are also cutting off the box shadow on the image. I’ve also been trying to get the section separators to layer UNDER the image so I can make the image float over the section above and possibly below. I’ve tried several possible fixes including tweaking the Z-index of every row and container, and applying custom CSS that I found in another help article (Image to dip into another row/section) but that didn’t work either. Closest I could get was setting a negative bottom margin on the top section, but that just pushes the separator up.
Can you help?