I'm having trouble displaying the background image when the site is accessed by Chrome on my smartphone, the PC displays normally (responsive).
HTML
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gazela Fotos</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/teste.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<link href="imagens/favicon.ico" rel="shortcut icon" type="image/x-icon">
</head>
<body class="background-home" onload="inicializaPagina();">
<div class="container-fluid">
<nav class="navbar navbar-inverse navbar-fixed-bottom menu">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#teste" 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 menu-titulo" href="#">Teste</a>
</div>
<div id="teste" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#" class="menu-opcoes menu-selecionado">Home</a></li>
<li><a href="#" class="menu-opcoes">Sobre</a></li>
<li><a href="#" class="menu-opcoes">Contato</a></li>
</ul>
</div>
</div>
</nav>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script><scriptsrc="js/bootstrap.min.js"></script>
<script src="js/teste.js"></script>
</body>
</html>
CSS:
.background-home {
background: url("../imagens/background-home.jpg") no-repeat center top fixed;
background-size: cover;
}
.redes-sociais {
display: none;
width: 100%;
margin-top: 15px;
text-align: right;
}
.menu {
display: none;
background-color: rgba(0,0,0,0.7);
}
.menu-titulo {
font-family: 'Ubuntu', sans-serif;
font-size: 26px;
color: #FFF !important;
}
.menu-opcoes {
font-size: 16px;
}
.menu-selecionado {
color: #FFF600 !important;
}
Because the background image is not responsive when the site is accessed by the smartphone, could someone give me a light?