I find this:
Code:
.body_wrapper {
padding: 0 {vb:math 2 * {vb:stylevar padding}} {vb:math {vb:stylevar padding}*2};
background: {vb:stylevar body_background};
-moz-border-radius: {vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
}
If I'm reading this right, stylevar padding is 10, so 2*10 = 20 and that margin I'm trying to remove is indeed 20 pixels.
I could probably replace to whole equation there, but I'm going to keep it simple and just replace the "2" with a "0", as 0*10 = 0 so that should fix it...
BRAVO!
Thank you so graciously for your assistance.
You're so helpful.