I agree with Cathy.
Here is the HTML that you can add as an HTML block.
<div id="custom-wrapper" class="custom-screenplay">
<h6>EXT. RESTAURANT. DAY</h6>
<div class="dialog"><p class="character">BOBBY</p><p>Hi Darla.</p></div>
<div class="dialog"><p class="character">DARLA</p><p>Hi Bobby!</p></div>
<div class="action"><p>And then other things happen, too...</p></div>
</div>
And CSS that you can add to the Code injection inside settings so you can have it on every other page:
<style>
#custom-wrapper {
font-family: 'Courier Final Draft','Courier Screenplay',Courier;
font-size: 12pt;
text-align: left;
width: 480pt;
padding-left: 90pt;
padding-top: 24pt;
position: relative;
margin: 0 auto;
}
header {
margin-bottom: 1em;
border-bottom: 1px solid black;
}
footer {
margin-top: 1em;
}
em {
font-style: italic;
}
strong {
font-weight: bold;
}
br {
clear: both;
}
/* Slug */
div {
width: 460pt;
}
#custom-wrapper h1:before,#custom-wrapper h2:before,#custom-wrapper h3:before,#custom-wrapper h4:before,#custom-wrapper h5:before {
content: "\25e6\00a0";
margin-left:-9pt;
}
#custom-wrapper h1,#custom-wrapper h2,#custom-wrapper h3,#custom-wrapper h4,#custom-wrapper h5{
font-family:'Gill Sans','Helvetiva Neue',Helvetica,sans-serif;
margin-top:24pt;
font-weight:400;
color: rgb(110, 110, 110);
border-top:dotted 1px rgb(199, 199, 199);
background-image: -webkit-linear-gradient(top, rgb(255, 255, 245), rgb(255, 255, 255));
font-size: 11pt;
}
#custom-wrapper h1,#custom-wrapper .h1-synopsis {
margin-left:-71pt;
}
#custom-wrapper h2,#custom-wrapper .h2-synopsis {
margin-left:-61pt;
}
#custom-wrapper h3,#custom-wrapper .h3-synopsis {
margin-left:-41pt;
}
#custom-wrapper h4,#custom-wrapper .h4-synopsis {
margin-left:-21pt;
}
#custom-wrapper h5,#custom-wrapper .h5-synopsis {
margin-left:-1pt;
}
.h1-synopsis,.h2-synopsis,.h3-synopsis,.h4-synopsis,.h5-synopsis,.h6-synopsis{
font-family:'Gill Sans','Helvetiva Neue',Helvetica,sans-serif;
font-size: 10pt;
font-style: italic;
color:rgb(145, 145, 145);
display:block;
margin-bottom:5pt;
}
#custom-wrapper h6 {
margin-top: 2em;
text-transform: uppercase;
font-weight: bold;
}
div.block {
position: relative;
background: #fff;
}
div.action p {
margin-top: 1em;
}
.centered {
text-align: center;
}
div.dialog,div.dual {
margin-top: 1em;
}
div.transition {
margin-top: 1em;
margin-bottom: 12pt;
text-align: right;
}
.dialog p.character {
padding-left: 153.33pt;
}
.dialog p.parenthetical {
padding-left: 115pt;
}
.dialog p {
padding-left: 76.67pt;
width: 306.67pt;
}
.dual > div {
float: left;
width: 48%!important;
}
.dual p.character {
padding-left: 6em;
}
.dual p.parenthetical {
padding-left: 3em;
}
.dual p {
padding-left: 0;
width: 19em;
}
.dual .right {
margin-left: 1em;
}
.dual .right p.character {
padding-left: 6em;
}
span.scnuml {
display: block;
float: left;
margin-left: -4.52em;
font-weight: inherit;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
span.scnumr {
display: block;
float: right;
margin-right: 0.72em;
font-weight: inherit;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.page-break {
page-break-before: always;
}
</style>
This should to the trick.
I hope that I have prefixed everything well .