View Single Post
Old 03-18-2014, 03:07 AM   #5
DoctorOhh
US Navy, Retired
DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.
 
DoctorOhh's Avatar
 
Posts: 9,897
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
Quote:
Originally Posted by kristalana View Post
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.


Last edited by DoctorOhh; 03-18-2014 at 03:11 AM.
DoctorOhh is offline   Reply With Quote