Goal is to change the color, size, and eventually default font of Bootstrap 4 navbar.
The following seemed to have no effect in web2py-bootstrap4.css (not the final colors! Just wanted contrasting ugly ones to make sure the experiment worked!)
file: web2py-bootstrap4.cs
.navbar-dark { color: rgba(255,0,0,0.5); }
.bg-dark { color: yellow; }
So in desperation I thought I'd just put it right in layout.htmlL
file: web2py-bootstrap4.cs
<style>
/* TC: Experimental */
.navbar-dark { color: rgba(255,0,0,0.5); }
.bg-dark { color: yellow; }
</style>
</head>
<body>
<div class="w2p_flash alert alert-dismissable">{{=response.flash or ''}}</div>
<!-- Navbar ======================================= -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
Still no change to the nav bar. What am I screwing up? TIA