Solucionado (ver solução)
Solucionado
(ver solução)
5
respostas

Menu de navegação não se encaixa abaixo da imagem

Boa tarde,

Não estou conseguindo fazer com que o menu de navegação se encaixe de baixo da imagem do João.

Segui a dica de remover o width: 15px da classe da imagem e mesmo assim não deu certo.

Abaixo estou postando o código do CSS:

body {
    font-family: "Crimson Text", "Times New Roman", serif;
    background-color: #F2FFFC;
    font-size: 120%;
    line-height: 1.5;
}

h1, h2 {
    font-family: "Open Sans Condensed", "Arial", sans-serif;
}

.titulo {
    text-align: center;
    background-color: #851944;
    color: #FFF;
    padding: 25px;
    border-bottom: 10px solid black;
    font-size: 60px;
    text-transform: uppercase;
}

p {
    text-align: justify;
    margin: 20px 0;
}

.citacoes {
    background-color: #D9E5E3;
    border: 10px solid #C2CCCA;
    width: 250px;
    box-sizing: border-box;
    margin: 20px 40px;
}

.navegacao-site {
    background-color: #3C1D3D;
    color: #F2FFFC;
    text-align: center;
}

.rodape {
    background-color: #000;
    color: #F2FFFC;
    clear: both;
}

main a {
    color: #851944;
}

.navegacao-site a{
    color: inherit;
    font-family: "Open Sans Condensed", sans-serif;
}

.citacoes, .rodape, .navegacao-site{
    padding: 20px;
}

.centralizar-texto-principal {
    width: 720px;
    margin: auto;
    padding: 30px 0;
}

.navegacao-site h1{
    font-size: 30px;
    margin-bottom: 25px;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

.artigo {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.link-leia-mais {
    font-size: 24px;
    padding: 8px;
    margin: 16px;
    text-align: center;
    background-color: #E6E7E8;
    display: block;
}


nav a {
    text-transform: lowercase;
}

.icones-sociais a{
    width: 40px;
    height: 40px;
    display: block;
    font-size: 0px;
}

aside a {
    color: inherit;
    font-family: "Open Sans Condensed", sans-serif;
}

blockquote, aside {
    padding: 20px;
    float: left;
}

aside h1 {
    font-size: 30px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

h2 {
    font-size: 30px;
    clear: both;
}

.icones-sociais li{
    display: inline-block;
}

.github{
    background-image: url(projeto/github.png);
}

.twitter{
    background-image: url(projeto/twitter.png);
}

.linkedin{
    background-image: url(projeto/linkedin.png);
}    

.fiat{
    float: right;
}

.petrobras{
    float: left;
}

cite {
    font-style: italic;
    float: right;
}

.subtitulo-texto{
    clear: both;
}

main{
    float: left;
    width: 85%;
}

.imagem-joao, .navegacao-site{

    float: right;
    box-sizing: border-box;
    border-left: 10px solid black;
    border-bottom: 10px solid black;
}

.imagem-joao{
    position: absolute;
    top: 0;
    right: 0;
}

.navegacao-site{
    width: 15px;
    position: relative;
    top: 310px;
}

Creio que o problema não seja no html e sim no CSS.

Obrigado.

5 respostas

Boa tarde, Jeferson! Beleza? =)

No seu código, o último seletor CSS está com um errinho... Ao invés de width: 15px, deveria ser width: 15%, assim:

.navegacao-site {
    width: 15%;
    position: relative;
    top: 310px;
}

Poderia fazer essa alteração e testar, por favor? =)

Espero ter ajudado,

Abraço e bons estudos,

Fábio

Boa tarde Fábio, beleza.

Fiz a alteração e mesmo assim continuou o problema, fiz upload do print para vocês verem melhor:

http://samp-upload.com.br/GBc

Segue novamente o CSS:

body {
    font-family: "Crimson Text", "Times New Roman", serif;
    background-color: #F2FFFC;
    font-size: 120%;
    line-height: 1.5;
    padding-bottom: 80px;
}

h1, h2 {
    font-family: "Open Sans Condensed", "Arial", sans-serif;
}

.titulo {
    text-align: center;
    background-color: #851944;
    color: #FFF;
    padding: 25px;
    border-bottom: 10px solid black;
    font-size: 60px;
    text-transform: uppercase;
}

p {
    text-align: justify;
    margin: 20px 0;
}

.citacoes {
    background-color: #D9E5E3;
    border: 10px solid #C2CCCA;
    width: 250px;
    box-sizing: border-box;
    margin: 20px 40px;
}

.navegacao-site {
    background-color: #3C1D3D;
    color: #F2FFFC;
    text-align: center;
}

.rodape {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #000;
    color: #F2FFFC;
    clear: both;
    width: 100%;
    box-sizing: border-box;

}

main a {
    color: #851944;
}

.navegacao-site a{
    color: inherit;
    font-family: "Open Sans Condensed", sans-serif;
}

.citacoes, .rodape, .navegacao-site{
    padding: 20px;
}

.centralizar-texto-principal {
    width: 720px;
    margin: auto;
    padding: 30px 0;
}

.navegacao-site h1{
    font-size: 30px;
    margin-bottom: 25px;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

.artigo {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.link-leia-mais {
    font-size: 24px;
    padding: 8px;
    margin: 16px;
    text-align: center;
    background-color: #E6E7E8;
    display: block;
}


nav a {
    text-transform: lowercase;
}

.icones-sociais a{
    width: 40px;
    height: 40px;
    display: block;
    font-size: 0px;
}

aside a {
    color: inherit;
    font-family: "Open Sans Condensed", sans-serif;
}

blockquote, aside {
    padding: 20px;
    float: left;
}

aside h1 {
    font-size: 30px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

h2 {
    font-size: 30px;
    clear: both;
}

.icones-sociais li{
    display: inline-block;
}

.github{
    background-image: url(projeto/github.png);
}

.twitter{
    background-image: url(projeto/twitter.png);
}

.linkedin{
    background-image: url(projeto/linkedin.png);
}    

.fiat{
    float: right;
}

.petrobras{
    float: left;
}

cite {
    font-style: italic;
    float: right;
}

.subtitulo-texto{
    clear: both;
}

main{
    float: left;
    width: 85%;
    padding-bottom: 150px;
}

.imagem-joao, .navegacao-site{

    float: right;
    box-sizing: border-box;
    border-left: 10px solid black;
    border-bottom: 10px solid black;
}

.imagem-joao{
    position: absolute;
    top: 0;
    right: 0;
}

.navegacao-site{
    width: 15%;
    position: relative;
    top: 310px;
}

Opa, Jeferson!

Desculpe a demora, eu achei que tivesse lhe respondido antes...

Você conseguiu resolver esse problema? Ou ainda não?

Fábio

solução!

Fábio,

Consegui solucionar, o erro estava ao puxar o arquivo de reset.css

Obrigado.

Jeferson,

Boa, perfeito!

Desculpe, novamente, pela demora. =|

Abraço e bons estudos,

Fábio