Hi everyone,
I am new to OutSystems frontend technologies and currently trying to learn different scenarios focusing on the frontend. Here’s what I’m trying to achieve:
For example:
Could someone guide me on how to implement this functionality? Any help or code snippets would be greatly appreciated! Additionally, I am eager to learn more frontend scenarios. If there are any guided paths or scenarios within the OutSystems platform or the OutSystems forums community, please let me know.
Thank you in advance!
Hello @Goru jai sai raj kumar ,
You’ll need to override the colors in the element classes.
In your case, you can add the following CSS classes to your theme:
.app-menu-links a{
color: red;
}
.app-menu-links a:hover, .app-menu-links a.active{
color: blue;
.layout:not(.layout-side) .app-menu-links a.active{
border-bottom: var(--border-size-m) solid blue;
This will be the result:
Additionally, this is a great starting point to learn more about front-end development in OutSystems:
Becoming a Front-End Developer in OutSystems
Thank you, @Mihai Melencu your solution worked for me. I also want to express my gratitude to everyone else who responded to my query.
Hi Goru,
You should Override the default classes of menu. Use the CSS below to achieve the desired result.
.osui-submenu.active .osui-submenu__header__item,
.osui-submenu.active .osui-submenu__header__item a{
.osui-submenu__header__item {
Also here is the link for front end developer guided path https://learn.outsystems.com/training/journeys/front-end-developer-650
Can you share more detail like oml or test link to check because this is already available in outsytsems menu block. You just need to override the css as your need (for color)