Quote:
Originally Posted by slowsmile
To reduce the indent, just find the named style in your stylesheet for the paragraph with a dropcap and just set the text-indent property to 0.
|
My CSS file creates an indent whenever a return is entered, so there are a lot of indents that I don't want to remove.
Below is only part of the my CSS file from my first post.
body {
display: block;
font-size: 1.05em;
margin: 5px;
text-align: justify;
}
p {
font-style: normal;
font-family: Georgia;
text-indent: 20px;
margin: 5px;
}
..........
span.dropcap {
float: left;
font-size: 4.4em;
font-weight: ;
text-indent: 0px;
line-height: .8em;
margin-right: 8.0pt;
margin-bottom: -0.1em;
}
Brent