I have these measurements in normal
.centrar{
width:65%;
margin:auto;
text-align:center;
}
in the responsive I put
@media (max-width:800px){
.centrar{
width: 100% !important;
height:80px;
border:1px solid;
margin: 0 auto;
}
}
and it does not take me 100% of the screen. Any suggestions? or should I do it with javascript?