I have this div column in a content row:
< div class=“col-md-4 no-gutter” style=“float: right;” >
< div class=“well” >
< p >IRB applications should be… (blah blah blah) < /p >
< /div >
< /div >
I am using a CMS (Cascade Server) with Bootstrap 2.
This worked to remove the gutter padding…
[class*=‘col-’].no-gutter {
padding-right:0;
padding-left:0;
}
…but upon looking at it in desktop view, I need some padding for screens over 992px wide so that the text doesn’t run up to the div column. I tried adding the following but I think my syntax is wrong and I don’t know how to fix it. Can someone help me?
@media screen and (min-width: 992px) and [class*=‘col-’].no-gutter {
padding-right:0;
padding-left:15;
}