NAVBAR: How to see the title with Navbar transparent background?

Hi guys.

I have Navbar with transparent background, but I can’t succes show the title, only I can see the left icon… how can I do?,
navbar

html

<!-- NavBar -->

> <img class="img_home" src="img/BackGroundDefault.png">

    <div class="navbar navbar-transparent">
      <div class="navbar-bg"></div>   
      <div class="navbar-inner">
        <div class="left">
          <a href="#" class="link back">
            <i class="f7-icons">arrow_left</i>
          </a>
        </div>
        <div class="title navbar-tipo-letra">Configurar cuenta</div> 
      </div>
    </div>

CSS

@font-face {
font-family: “font-navbar”;
src: url("…/fonts/Roboto-Regular.ttf"); /* Give relative path to your css file.*/
}
.navbar-tipo-letra{
font-family: font-navbar;
color: white;
}

Try adding opacity: 1 !important to title styles

1 Like

Thanks Vladimir, works !!

Happy new year!!!