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.
Asked
Active
Viewed 1,190 times
2

azriebakri
- 1,131
- 2
- 11
- 36
1 Answers
0
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 -

Matthew S
- 308
- 1
- 15