I am trying to create a Row with three equal height columns. In each column I have a Headline and either a Content area or Text area. I am trying to add a margin-right to the first two columns when viewing on desktop. Here are my Settings and Element CSS:
##Row
##First and Second Column CSS
@media (min-width: 768px) {$el{margin-bottom:0!important;margin-right:4%!important;}}
@media (max-width: 767px) {$el{margin-bottom: 4%!important;margin-right:0!important;}}
##Last Column CSS
@media (max-width: 767px) {$el{margin-right:0!important;}}
##What it looks like so far on desktop
##What it looks like so far on mobile
##The main issue I am having
I need to add a margin to the right of the first and second column when viewing on desktop, and a zero margin to the right when viewing on mobile.