Call out color

how would I change the background color of a callout?

Hi @waynepatt58,

Thanks for reaching out.

There is no extra options for classic elements, you can only achieve that through CSS. Example,

You can add this CSS to the global custom CSS with your preferred color.

.custom_callout.x-callout {
    background-color: #000;
}

Then add custom_callout to your callout element’s Class input field.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.