Hi Wendy-
With the call-to-action missing, the main place that the image spacing comes from is the margin-top on the div.entry-content element. So you can target that with a CSS rule like this:
div.entry-content {
margin-top: 300px;
}
You might also want to consider using a screen size media query on this, because that rule will also affect the mobile view. So if you’d like to go a little smaller for small devices, try something like this (adjust the pixel values according to what looks best for your image):
div.entry-content {
margin-top: 250px;
}
@media only screen and (min-width: 992px) {
div.entry-content {
margin-top: 350px;
}
}