I have a problem that is killing me. Working with Brackets I can see my page correctly done on my local server, but when I upload it to my hosting server it is not displayed correctly.
The problem arises in the div with class ".text-fixed"
This is how it looks on my local server:
This is how it looks on my hosting server:
In fact, in my local file it looks good in responsive mode, but on the server it's all wrong.
You can find the error in www.centrodentalcofico.com.ar
Thanks for the help.
<!DOCTYPE html>
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-CDC.png">
<title>Centro Dental Cofico</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Mogra" rel="stylesheet">
<!-- CSS -->
<link href="assets/node_modules/bootstrap/dist/css/bootstrap.css" rel="stylesheet">
<link href="assets/node_modules/bootstrap-touch-slider/bootstrap-touch-slider.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/demo.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/core.css" rel="stylesheet">
<link href="../css/responsive.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.css" rel="stylesheet">
<div class="container">
<section id="header">
<div class="texto-fijo wow fadeInUp anidur-1s">
<div class="texto-interno">
<h2>DESDE 1996</h2>
<h1>ESTÉTICA SALUD ARMONÍA</h1>
</div>
</div>
<div class="slider-principal">
<div>
<img src="images/header/1-final.jpg" alt="">
</div>
<div>
<img src="images/header/2-final.jpg" alt="">
</div>
<div>
<img src="images/header/3-final.jpg" alt="">
</div>
<div>
<img src="images/header/4-final.jpg" alt="">
</div>
<div>
<img src="images/header/5-final.jpg" alt="">
</div>
<div>
<img src="images/header/6-final.jpg" alt="">
</div>
<div>
<img src="images/header/7-final.jpg" alt="">
</div>
<div>
<img src="images/header/8-final.jpg" alt="">
</div>
<div>
<img src="images/header/9-final.jpg" alt="">
</div>
<div>
<img src="images/header/10-final.jpg" alt="">
</div>
</div>
</section>
</div>
The CSS of that section is:
.texto-fijo{
text-align: center;
position: absolute;
z-index: 50;
bottom: 10px;
left: 0;
right: 0;
}
.texto-fijo .texto-interno{
width: 500px;
height: 60px;
position: relative;
margin: 0 auto;
background-color: rgba( 71, 71, 71, 0.456 );
border-radius: 12px
}
.texto-fijo h2{
font-size: 18px;
color: #FFF
}
.texto-fijo h1{
font-size: 25px;
margin-top: -20px;
color: #FFF
}