How can I lessen line spacing in rich text?

Hi!

I am trying to reduce the spacing between lines of text in my rich text. I have highlighted the area I am trying to reduce. Any help would be greatly appreciated :slightly_smiling_face:

site

www.stellarfaecreations.com

Thanks!

Hi @StellarFae

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/component-rte.css
  3. Add code below to bottom of file
.rich-text__blocks .rich-text__text.rte p {
	margin-bottom: 0!important;
	margin-top: 0!important;
}

That worked! Thank you so much!

Is there any way to reduce the space between the header and body in this rich text section?

Hi @StellarFae

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/component-rte.css
  3. Add code below to bottom of file
.rich-text__blocks > * + * {
	margin-top: 0!important;
}

Thank you! This was also what I needed and fixed it! Bless you!

i have this problem but i dont have this code in my assets file? im on theme SENSE

Hi @afterglowskin ,

For SENSE theme. You can add to assets/section-rich-text.css file.