I have a little problem using responsive navbar. I have two divs that centralize my page.
<div id="tudo">
<div id="conteudo">
<!--My content here-->
</div>
</div>
And the css:
#tudo
{
width: 876px;
margin: 0 auto;
text-align: left; /*hack for IE*/
}
#conteudo
{
padding: 5px;
}
But when I copy the code for responsive the layout does not work -> Here