View Single Post
Old 09-24-2023, 11:48 AM   #5
helens
Member
helens began at the beginning.
 
Posts: 16
Karma: 10
Join Date: Apr 2023
Location: Scotland
Device: Kindle
Quote:
Originally Posted by JSWolf View Post
You don't want tabs as indents. You want to use a text-indent in CSS. Forget the class para1. You do not need it. Use just <p> for the standard indented paragraphs. Here is some CSS that will do the job and do it well. Also get rid of the spans with span3 and get rid of the tabs.

CSS
Code:
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 0;
}
Thanks, that helps a lot. Sorry to ask again (I'm not that great with code), but I want the first paragraph of each chapter to NOT be indented. How do I get around that? Do I need to use a <div> for those paragraphs?
helens is offline   Reply With Quote