Hello, I need to know how to get the margins to work. I have a page (https://claimsrepcn.com/water-damage-mitigation/) with three columns. I used this custom css to create a drop shadow behind the columns. Now I cannot get the margins to work.
.x-column-shadow {
-webkit-box-shadow: 0px 0px 5px 2px rgba(122,120,122,1);
-moz-box-shadow: 0px 0px 5px 2px rgba(122,120,122,1);
box-shadow: 0px 0px 5px 2px rgba(122,120,122,1);
}
When I add margin: 10px to the css, it moves one of the three columns down. Can you help me?