Copy link to clipboard
Copied
I have a page with a background image. When I put a grid onto the page I can't make it transparent so that you can see the background image.
Your navbar has both a navbar and navbar-inverse class. If you remove the color from "navbar" you end up with the inverse background which is #222 which is nearly black (#000). If you want a transparent effect remove the navbar-inverse class and just add an inline style so this doesn't impact all navbars like:
<nav class="navbar" style="background:transparent;">
Copy link to clipboard
Copied
Bootstrap's "navbar-inverse" has a light gray background by default. Is that what you're struggling with? I don't see any black containers.
https://www.w3schools.com/bootstrap/bootstrap_ver.asp
See screenshot:
Copy link to clipboard
Copied
Your navbar has both a navbar and navbar-inverse class. If you remove the color from "navbar" you end up with the inverse background which is #222 which is nearly black (#000). If you want a transparent effect remove the navbar-inverse class and just add an inline style so this doesn't impact all navbars like:
<nav class="navbar" style="background:transparent;">
Copy link to clipboard
Copied
Thank you so much Ben, your solution achieved exactly what I wanted.
Copy link to clipboard
Copied
Bootstrap navbar classes & color schemes.
https://getbootstrap.com/docs/4.3/components/navbar/