Custom CSS question

Please see the screenshots on this post.

It turns out this is not a bug, but due to a formatting change. The style margin was increased to 3em.

Using browser dev tools I’ve identified the class in question:

#editor-wrapper div.ProseMirror hr {
  padding: 2px 0;
  border: none;
  margin: 3em 0;
  width: 100%;
}

Using the theme CSS editor, I added this:

#editor-wrapper div.ProseMirror hr {
  padding: 2px 0;
  border: none;
  margin: 1em 0; !important
  width: 100%;
}

I was hoping this would be a temporary workaround until the developer narrows the margin. However, after adding this class, I noticed the change not being picked up by the page. I’ve refreshed the page, restarted all services, but to no avail.

What am I doing wrong?

The semicolon should be after the !important directive.

Awesome! Works great now! Thank you!