I want to create a unique extended navigation bar for my website that has the following structure:
<nav class="nav-extended">
<div class="nav-wrapper">
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="https://www.instagram.com/?hl=nl"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://plus.google.com/discover"><i class="fab fa-google-plus-g"></i></a></li>
<li><a href="https://twitter.com/?lang=nl"><i class="fab fa-twitter"></i></a></li>
</ul>
</div>
<div class="nav-content">
<ul class="tabs tabs-transparent">
<li class="tab"><a href="#">contact us</a></li>
<li class="tab"><a href="#">blog</a></li>
<li class="tab"><a href="#">pages</a></li>
<li class="tab"><a href="#">service</a></li>
<li class="tab"><a href="#">about us</a></li>
<li class="tab"><a href="#">home</a></li>
</ul>
</div>
</nav>
My goal is to eliminate the default upper background of the navigation where the icons are placed. However, I'm struggling with removing the standard red background from Materialize CSS.
This is the CSS code snippet I've used in an attempt to change or remove the background color:
background-color: none (!important);
background-color: rgba(0, 0, 0, 0);
opacity