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

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to