How to show an active state in the Menu Builder?

First go to: Bricks > settings > custom code> custom css there you can put your custom active code like the following:

.current-menu-item{
border:1px solid #ffffff;
font-weight: bold;
background-color:red;
}
This code will give your active menu item a 1px white border, with a red background and bold font weight. Change the code however you want it to look.

1 Like