Skip to main content
arir1
Participating Frequently
December 9, 2016
Question

How to delete indents in HTML text?

  • December 9, 2016
  • 1 reply
  • 314 views

Hi, I want to delete the indentation marks in HTML . The text in the FrameMaker document does not have indentation marks and the left and right spacing is set to 0. How do I accomplish this in HTML?

I do not want the first line of text to be indented in HTML. How do I change this in FrameMaker?

This topic has been closed for replies.

1 reply

Barb Binder
Community Expert
Community Expert
December 9, 2016

Are using File > Save as HTML to create these files?

~Barb at Rocky Mountain Training
Barb Binder
Community Expert
Community Expert
December 9, 2016

It's going to be in the CSS file. Is the ¶ tag called Body? Open it up in a text editor and check P.Body. It's the text-indent value.

P.Body {

  display: block;

  text-align: left;

  text-indent: 0.000000pt;

  margin-top: 3.000000pt;

  margin-bottom: 7.000000pt;

  margin-right: 0.000000pt;

  margin-left: 0.000000pt;

  font-size: 9.000000pt;

  font-weight: medium;

  font-style: Regular;

  color: #000000;

  text-decoration: none;

  vertical-align: baseline;

  text-transform: none;

  font-family: "Myriad Pro";

}

~Barb at Rocky Mountain Training