Found a solution to my own problem!
You need to do a couple things, but they’re easy:
In your plug-ins folder -> buddypress-activity-plus -> css find the file “bpfb_interface.css” and add the following:
//This will remove the line breaks that are all over the place
.bpfb_images br {display:none}
//This will allow you to force the images to be a diff. size, spacing, etc..
.bpfb_images img {
max-width: 420px;
margin-bottom: 10px;
margin-right: 10px;
}
If you are handy in css you can tweak away.
Cheers!
MD