Hi Walt,
You should not edit CSS/LESS file in 't3-assets' folder - this is temporarily folder to keep compressed files only. If you want to change LESS files, you should change in template folder:
/templates/ja_resume/less/navbar.less
// Style Dark
.style-dark & {
.navbar-nav {
> li > a {
color: @white;
&:hover,
&:focus {
color: @navbar-default-link-active-color;
}
}
> .active > a {
&,
&:hover,
&:focus {
color: @navbar-default-link-active-color;
background-color: @navbar-default-link-active-bg;
}
}
}
}
......
or customize in themes folder: /templates/ja_resume/less/themes/ that you're using.
Regards