Formatting Advanced Variables

Hi, How might I be able to alter the Advanced Variables for a Navbar Toggler Icon, I’d like to style the toggler with a less thick border. - I looked thru the Bootstrap Docs but did not see specific reference to this. Thanks.

If you are referring to the focus state of the navbar toggler button, you can customize this in your custom CSS. The rule which you need is:

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem;
}

so the box-shadow 0.25rem is the value you want to change.

OK great, thanks.