Hi Jeff,
I tried to use the style setup within MLA and with David’s excellent help I tidied them up a lot.
<style type='text/css'>
#[+selector+] {
margin: 0;
width: 100%;
border: 0px solid #abbd7b;
}
#[+selector+] table {
border: 0px dashed #abbd7b;
border-collapse: separate;
padding-top: 1px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
/* colour is abbd7b */
#[+selector+] tbody {
border: 4px solid #fffff;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
width: 100%;
}
#[+selector+] th.gallery-title {
width: 88%;
height: 16;
vertical-align: top;
}
#[+selector+] th.gallery-icon {
width: 12%;
height: 16;
vertical-align: top;
}
#[+selector+] td.gallery-icon img {
border: 0px solid #abbd7b;
}
#[+selector+] .gallery-row {
float: none;
text-align: left;
width: auto;
padding: 0;
}
#[+selector+] td {
padding: 0.2em;
}
#[+selector+] .header-row {
float: none;
text-align: left;
font-weight: bold;
}
#[+selector+] .gallery-caption {
margin-left: 0;
vertical-align: top;
}
</style>
However, due to an impossible to resolve conflict with Tablepress plug-in styling in the end I had to add this css style to the theme CSS customisation section:
`table td, table th, tbody {
border: 3px solid #abbd7b;
padding-top: 2px;
padding-right: 7px;
padding-bottom: 2px;
padding-left: 7px;
}
which admittedly forced ALL site tables to have a 3px off-green border!!
Paul