Botframework - resize bot chat in width [duplicate

2019-07-09 03:42发布

This question already has an answer here:

Is it possible to resize the width of the chat for botframework ? Currently I'm testing on a emulator. Basically I want make my bot chat wider to the right. As you can see in the picture, the chat width remain the same despite me increasing the size of the columns, add more columns, and so on. Currently using adaptive card. enter image description here

1条回答
Bombasti
2楼-- · 2019-07-09 04:00

If you are using the iframe embed, you can edit the width of the iframe HTML element by adding the style in-line:

<div id="bot">
<iframe src="https://webchat.botframework.com/embed/..." 
        style="height: 600px; width: 500px; resize: both;">
</iframe>

Alternatively, if you want greater control you can edit the styling directly to the Web Chat source code -

Customizing Web Chat

查看更多
登录 后发表回答