
Announcements
I have created a co pilot , which has more than 3 queries that I would like users to select. I want to have them vertically stacked rather than horizontally as it needs them to scroll and they might end up missing the options. How can I achieve this?
You can do so by customizing the Web Chat in your website.
First, follow this article to enable advanced features, https://learn.microsoft.com/en-us/microsoft-copilot-studio/customize-default-canvas?tabs=web.
Then, search for "styleOptions" and modify it to:
{
hideUploadButton: true, // As in the sample code snippet
suggestedActionLayout: 'stacked'
}
This would turn the suggested action into a vertical format (stacked layout).
Once you enable the advanced features, you can look here for more branding/styling options.