Page 1 of 1

Reduce space between intro line and UL/OL items

Posted: Sat Aug 16, 2025 9:09 pm
by joyceclc23
How do I reduce the spacing between the introduction line and the list items?
image.png
image.png
image.png

Re: Reduce space between intro line and UL/OL items

Posted: Wed Aug 20, 2025 10:39 am
by sorin_carbunaru
Hi,

Are these screenshots of the source content or the published content? If they from the published content, what kind of publication is this? PDF?

Best wishes,
Sorin Carbunaru
Oxygen XML Editor

Re: Reduce space between intro line and UL/OL items

Posted: Wed Aug 27, 2025 12:01 pm
by joyceclc23
Hi Sorin,
These are output from a PDF.
I can't seem to reduce the spacing between the heading and the body text.

Re: Reduce space between intro line and UL/OL items

Posted: Thu Aug 28, 2025 10:16 am
by julien_lacour
Hi,

You can remove the margin before the lists by adding the following CSS rule:

Code: Select all

*[class ~= "topic/ol"],
*[class ~= "topic/ul"] {
  margin-top: 0;
}
You can easily find the default rules and modify them by debugging the CSS.

Regards,
Julien