web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Copilot Studio / Vertical menus on webp...
Copilot Studio
Suggested Answer

Vertical menus on webpages

(0) ShareShare
ReportReport
Posted on by 17
I have the following demonstration site but the menu is showed horizontally, how to show the options vertically? 
 
Categories:
I have the same question (0)
  • Suggested answer
    Garima_PowerPlatform Profile Picture
    170 on at
    Hi 
     
    Adjust CSS for vertical layout
    .menu-class {
        display: flex;
        flex-direction: column;  /* Sets the menu to stack vertically */
        list-style-type: none;
        padding: 0;
    }
    .menu-class li {
        padding: 10px;
    }
    .menu-class li a {
        text-decoration: none;
        color: black;
    }



    Replace .menu-class with your actual menu class or ID.

    Update HTML for Vertical Layout
    <ul class="menu-class">
        <li><a href="#">Option 1</a></li>
        <li><a href="#">Option 2</a></li>
        <li><a href="#">Option 3</a></li>
        <li><a href="#">Option 4</a></li>
    </ul>
    Apply Flexbox Layout

    .menu-container {
        display: flex;
        flex-direction: column;
    }

    Responsive Design
    @media (max-width: 768px) {
        .menu-class {
            flex-direction: column;
        }
    }

    Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Copilot Studio

#1
Valantis Profile Picture

Valantis 835

#2
Vish WR Profile Picture

Vish WR 294

#3
Haque Profile Picture

Haque 248

Last 30 days Overall leaderboard