i'd checked the body tag already
before there was no class on body, just....
</head>
<body>
....
with a CSS definition:
body
{
font-size: medium;
line-height: 1.2em;
margin-top: 1em;
margin-left: 0em;
margin-right: 0em;
margin-bottom: 5.000000pt;
margin-top: 5.000000pt;
font-family: "Charis";
}
NB original CSS has body , not .body
after
<body class="calibre1">
.calibre1 {
display: block;
font-family: "Times New Roman", Times, serif;
font-size: 1em;
line-height: 1.2em;
padding-left: 0;
padding-right: 0
}
so I'm still not seeing it ( assuming lack of explicit padding definition defaults to zero )
|