I’m not sure where you made changes to the second css, but when I looked at the source code, it still showed the default sizing:
#content-right .content-inner {
padding: 4.25em 2.25em 4.25em 0;
}
To reduce the top padding space, the code should be like this to make it zero for the top area above your banner:
#content-right .content-inner {
padding: 0 2.25em 4.25em 0;
}
Then below the banner, your image is wrapped in a
paragraph tag set which has a bottom margin (adds space below it). I would remove the
from the widget you are using for your banner image and just have the image there only. But, add a class=”alignright” or class=”pull-right” to your
tag.