How can I reduce the space between two rich-text sections on my webpage?

Hello,

I am trying to change width between two alternate rich-text sections on my page. To edit my website further, I created to new rich-text versions, rich-text-3 and rich-text-4. I want to diminish the space between the two sections. I tried to apply:

#about .rich-text-3 { padding: 50px 0px; }”

This did not work, however. Any ideas as to how to solve it? All help is highly appreciated.

My website is: cryptoalgos.net , the page I am trying to edit is “Tutorial”

Hi @emil150j

Try this css

#about .index-section--rich-text {
  padding: 50px 0px;
}

That did not work, unfortunately. Any other ideas?

The below should work.

.rich-text.rich-text--rich-text-3 {
    padding-bottom: 0;
}