but you can use ctrl/cmd-shift-i to inspect the code with devtools.
Excellent! You just saved me so much time I had wondered if there was such an option, but could not find any details.
try adding the tweak to custom.css either targeting the
.pill
element or any.raw_html
element
Now I can clearly see the HTML that the macro output is enclosed in, I have used the following CSS to make the enclosing divs inline where they appear within an inline span.
span.inline div {
display:inline;
}
Iām not sure yet if there may be unwanted side effects to this.