@amph The best thing to do is make “!important” style overrides in your theme’s style.css file. (Not individual css files within each plugin. This is because anytime you update a plugin, it could potentially overwrite any changes you’ve made to the plugin’s core files.) To locate individual items that you want to change I use Firefox browser, go to your website and right-click on any part of the plugin you want to change select “Inspect Element…”. A toolbar will show up at the bottom of the browser that has the objects and classes of all elements within the plugin. I’ve attached a screenshot
https://db.tt/Bv1YE9qv
To space out the input forms, I just went to my theme’s style.css file I just added:
.cloudwok-embed .form-control {
margin-bottom: 15px !important;
font-size: 10pt !important;
}
Hope this helps!