Hey Guys,
I’m trying to add the below CSS to a row I created in the SPB.
-webkit-box-shadow: 1px 6px 11px -2px rgba(133,133,133,1);
-moz-box-shadow: 1px 6px 11px -2px rgba(133,133,133,1);
box-shadow: 1px 6px 11px -2px rgba(133,133,133,1);
I can’t seem to figure out a way of applying it to a single row, I have tried this:
.fw-row {
margin-left: 0;
margin-right: 0;
overflow: hidden;
-webkit-box-shadow: 1px 6px 11px -2px rgba(133,133,133,1);
-moz-box-shadow: 1px 6px 11px -2px rgba(133,133,133,1);
box-shadow: 1px 6px 11px -2px rgba(133,133,133,1);
}
The above works fine, but the issue is that every single row then gets the shadow. I only want to add it to one specific row. Any clue as to how to achieve this?
Thanks,
J