Styling Workshop objects with Slate (custom widget) CSS

Hello,
I have a simple workshop with a table, that has an ID of #myTable. I also added to that Workshop app a Slate custom widget. My goal is be able to add some CSS in my Slate app to style the #myTable object above. for example:
#myTable {

background-color: red;
}
Can someone guide me on how to accomplish that?

Check out the docs for slate styling. It has some examples on how to style a widget.

Note that you cannot style the Workshop app from within the Slate app. As in, you cannot apply CSS to elements outside of the Slate application or within an iframe.

1 Like

Misread this - it is not possible to style your workshop table (outside of the default params available in the workshop table config). You can instead create a separate table in slate with your own custom styling.

There might be some parts of the custom styling that can be done via a variable, such that you could pass a field from slate into workshop and that var could be used for the styling.

Hi @bkaplan , @zaini thanks for your reply.
My goal is not to style Slate or Slate widget, I have no problem with that.
I am trying to custom style workshop app using Slate custom widget within that workshop application.

Thanks @bkaplan @zaini for explain that.
Besides Slate, is there any other ways at all to custom style a Workshop?