View Single Post
Old 09-24-2023, 07:30 AM   #2
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,031
Karma: 147977995
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
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;
}

Last edited by JSWolf; 09-24-2023 at 01:58 PM.
JSWolf is offline   Reply With Quote