Can I put a custom message when I deactivate my domo brick in domo everywhere?

I would like to pause my current brick with a custom closed message. I see that I can only set to 'Off' and it throws the below . However I want to set a custom message for the users. How can I achieve this?

image.png

Answers

  • You can edit the brick to display text by updating the HTML and CSS:

    HTML:
    <div id="myDiv"> <h1>custom closed message</h1></div>

    CSS:
    #myDiv { display: flex; align-items: center; justify-content: center; background: rgb(131,58,180); background: linear-gradient(90deg, rgba(121,64,161,1) 0%, rgba(228,88,80,1) 50%, rgba(251,141,52,1) 100%); height: calc(100vh);}
    h1 { color: white;}

    Result:

    Screenshot 2025-06-10 at 8.47.46 AM.png

    You can also comment out your existing code to revert it if/when you decide to do that.

    If I solved your problem, please select "yes" above