Hi there,
It looks like you have been adjusting padding for .rt-block - unfortunately the class .rt-block affects every module position in your template.
If you need to adjust a specific area then you need to identify the areas that can narrow it down to the specific area. For example your video module can have it's own .rt-block setting by calling it as...
#rt-content-top .rt-grid-5 .rt-block {
add your own css styles in here
}
This helps to preserve the rest of the layout within the template.
So you could set up a setting for your top area by using #rt=top .rt-block and this would affect all .rt-block calls in the #rt-top area.
I always add changes to bottom of template.css so I can copy them if I need to do an upgrade later :cheesy:
Hope this helps