View Single Post
Old 08-21-2022, 10:28 AM   #9
bookman156
Addict
bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.bookman156 ought to be getting tired of karma fortunes by now.
 
Posts: 368
Karma: 1000000
Join Date: Mar 2016
Device: none
Quote:
You left out the HTML code. And is there any more CSS that's relevant?
I posted what I thought was relevant, but here's the whole of the CSS excluding the embedded font in case I'm missing something. HTML is just standard stuff, h1 wrapping a heading:

Code:
body {
font-family: "Dante MT Std", serif;
font-weight: normal;
color: #000000;
margin: 0.5em;
widows: 1;
orphans: 1;
}

h1 {
font-size: 2em;
line-height: 1.5em;
font-weight: bold;
text-align: center;
}

p {
	font-size: 1em;
	line-height: 1.4em;
	text-indent: 1em;
	text-align: left;
	margin: 0;
}

p.space {
    margin-top: 1.2em;
}

p.first {
    text-indent: 0;
    margin-top: 3em;
}

p.noindent {
	text-indent: 0;
}

p.noindentspace {
    text-indent: 0;
    margin-top: 1.2em;
} /* a space, but still part of previous portion of text */

p.noindentspacebelow {
    text-indent: 0;
    margin-bottom: 1.7em;
}  

p.byline {
	font-size: 1.4em;
  	line-height: 1.5em;
  	margin-top: -0.6em;
	font-style: italic;
	text-indent: 0;
	text-align: center;
}

p.epigraph {
    font-size: 1.3em;
    line-height: 1.4em;
    margin-top: 1em;
    text-indent: 0;
    text-align: center;
  }

em {
	font-style: italic;
}

hr.transition {
    margin: 1.5em 40% 1.55em 40%;
    border: 0;
    border-bottom: 1px solid #CCC; 
  }
bookman156 is offline   Reply With Quote