• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to delete indents in HTML text?

Community Beginner ,
Dec 09, 2016 Dec 09, 2016

Copy link to clipboard

Copied

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?

1.PNG

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

Views

158

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 09, 2016 Dec 09, 2016

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 09, 2016 Dec 09, 2016

Copy link to clipboard

Copied

LATEST

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";

}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines