Quote:
Originally Posted by kristalana
I do really like the default jacket, but if I could just get the summary moved up a bit it would be perfect. 
|
My guess is if you reduced the margin or padding found in this section of the stylesheet.css you may get the results you want.
.cbj_banner {
background: #eee;
border: thin solid black;
margin: 1em;
padding: 1em;
-webkit-border-radius:8px;
}
Adjusting either will reduce the margin or padding around the whole table. If you only want to affect the bottom you could substitute:
margin:1.1em 1.2em 0em 1em;
In this example the
top margin 1.1em is first, followed clockwise around the table,
right margin 1.2em
bottom margin 0em
left margin 1em
The same above applies to padding.
Google
css margin for more info.