
Originally Posted by
RescoCCC
You might be able to do it by adding this to your stylesheet.css:
#blanksideboxContent {
padding-top: XXpx;
padding-bottom: XXpx;
}
Adjust the XX to taste.
Old thread but may help someone. Thanks Resco. In my case I was just adding a widget and didn't have or use <p></p>. I still had excessive space at top and bottom. Was able to use your css rules and apply them to do the trick. Had to change padding to:
Code:
margin-top: -20px;
margin-bottom: -20px;
but your input pointed me in the right direction.
Thanks again..........