Do you want to move the entire set of columns over or just one column? I’ve got a workaround for the first but the second would be a bit more tricky.
.black > .su-note {
height: auto !important; /* !important is used to force override. */
width: auto;
margin: 2 2 2em 2%;
border-color: rgba(0,0,0,0.85);
border-width: 2px;
border-style: solid;
}
.black > .su-note-inner {
height: auto !important;
padding: 1em;
border-width: 1px;
border-style: solid;
background-color: #000000;
background-color: rgba(00, 00, 00, 0.5);
}
Add these to your settings css in the shortcodes plugin section, or the main css for your theme. i prefer the former because it’s more portable for other pages i am making.
in this case you could call it with [su_note class=”black” note_color=”none” text_color=”#ffffff”] and change the border to be .. whatever.