Hi, I could use a quick hand.
Cloud Reader displays text-indents by default. A client is unhappy. The book I've formatted for him uses indents in specific places. I've used css classes for those.
Help: I need to override Cloud Reader's default paragraph first-line indents.
If I define <p> as zero-indent and a special class for indented text, might that work? e.g.
Code:
p {
text-indent: 0px;
}
p.indented {
text-indent: 10px;
}
EDIT: Or perhaps put the override into body {}?