How to add opacity in the bootstrap menu

0

I'm now starting to mess with both site and bootstrap, I'm using wordpress tbm. Ok my doubt is as follows, I added the default bootstrap menu on my site, and I left it fixed on top tbm, I would like to know now how I do it to tweak the opacity of it so that when I go down the site it n I'm overlapping the content of the site, giving you to see part of the content even with the fixed menu.

I have searched and still have not found it, I would like to know if it is through HTML itself to do this, or I will have to do it through cms msm ...

Menu Code.

<nav class="navbar navbar-default">
  <div class="container-fluid">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
      <a class="navbar-brand" href="#">Brand</a>
    </div>

    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      <ul class="nav navbar-nav">
        <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">Separated link</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">One more separated link</a></li>
          </ul>
        </li>
      </ul>
      <form class="navbar-form navbar-left">
        <div class="form-group">
          <input type="text" class="form-control" placeholder="Search">
        </div>
        <button type="submit" class="btn btn-default">Submit</button>
      </form>
      <ul class="nav navbar-nav navbar-right">
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">Separated link</a></li>
          </ul>
        </li>
      </ul>
    </div><!-- /.navbar-collapse -->
  </div><!-- /.container-fluid -->
</nav>
    
asked by anonymous 16.09.2017 / 05:28

1 answer

2

If you add opacity in the navbar class does not work?

.navbar
{
   opacity: 0.7;
}

The bootstrap itself does not have a helper for opacity, do it by the same CSS

EDIT:

To make the menu opaque only when you scroll down the page, try the following: Create a class in css:

.opaque
{
   opacity: 0.7;
}

Leave the navbar attached to the top:

<nav class="navbar navbar-default navbar-fixed-top">

And use this jQuery, so that when you scroll the page, it adds the opaque class to the navbar, and when it returns to the top, it removes:

$(window).scroll(function() {
    if ($(".navbar").offset().top > 50) {
        $(".navbar-fixed-top").addClass("opaque");
    } else {
        $(".navbar-fixed-top").removeClass("opaque");
    }
});
    
16.09.2017 / 05:38