Dash, Bootstrap question

I have a dash webpage using bootstrap. One of the data tables is wide. The layout however is centered on the page. I presume there is something I need to set as a class name to get the entire webpage aligned to the left.

Any pointers? thanks

It’s a bit hard to know for sure without a bit more detail on how your layout is constructed, but you might be able to resolve this by adding the text-left class to the parent of all your text content. It’s a utility class defined by Bootstrap that will take care of the alignment for you.

1 Like

Thanks. That was enough of a hint to google to get it working.
I used float-left and a margin-left to get what was needed

N.