Jump to content


Photo

Centralizando Site


  • Faça o login para participar
8 replies to this topic

#1 Luciano Oliveira Lima

Luciano Oliveira Lima

    Novato no fórum

  • Usuários
  • 21 posts
  • Sexo:Não informado

Posted 19/04/2010, 17:12

Galera estou com um problema de centralizar o site

eu coloquei na div geral o margin: auto; padding: auto;

mais como o meu rodape e daqueles fixo sempre no final do site..
ele desentralizou..

vou coloca o codigo xhtml e o CSS para vocês analizarem e me ajudar a centralizar o site.


xhtml:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" media="screen" rel="stylesheet" />
<title>Faculdade Católica no Dragão Fashion 2010</title>
 
<STYLE TYPE="text/css">
<!-- /* $WEFT -- Created by: Luciano Oliveira (Unknown) on 19/04/2010 -- */
  @font-face {
    font-family: Grover;
    font-style:  normal;
    font-weight: normal;
    src: url(GROVER0.eot);
  }
-->
</STYLE>

</head>

<body>
<div id="fundoCabecalho"></div>
<div id="global">
<div id="cabecalho">&nbsp;</div>
<div id="menu">
	<ul class="menu01">
    	<li><a href="#">Inicio</a>-</li>
        <li><a href="#">Cursos</a>-</li>
        <li><a href="#">Programação</a>-</li>
        <li><a href="#">Galeria de Fotos</a>-</li>
        <li><a href="#">Fale Conosco</a></li>
    </ul>
    <div style="clear:both"></div>
</div>
<!-- Começo do Conteudo -->
<div id="conteudo">
	<h3>O que está acontecendo</h3>
    <img src="img/linha.jpg" width="800" height="12" border="0" class="linha" />
		<img src="img/img02.jpg" width="155" height="121" border="0" class="img" />
    <div class="texto">
    	<h3>Titulo da Noticia</h3>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.</p>
        <h3 class="h3">Leia Mais</h3>
    </div>
    <div style="clear:both"></div>
   
    <div class="linkTodos"><h3>Veja todas as novidades</h3></div>
</div>
<!-- Começo do Conteudo -->
<div id="rodape">&nbsp;</div>

</div>
</body>
</html>

CSS:

@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Grover;
    font-style:  normal;
    font-weight: normal;
    src: url(GROVER0.eot);
}

html, body {height:100%;} 

body{
margin:0;
padding:0;
background:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}

li{
list-style:none;
}

#global{
width:100%;
position:relative;  /*Contexto de posicionamento */
min-height:100%;/**/
}

* html #global {height: 100%;}

#fundoCabecalho{
width:100%;
height:277px;
background:url(img/img.jpg) repeat-x center;
position:absolute;
z-index:-1000;
}

#cabecalho{
width:100%;
height:209px;
background:url(img/topo.jpg) no-repeat left;
}

#menu{
margin-top:40px;
}

#menu .menu01 li{
float:left;

}

#menu .menu01 li a{
text-decoration:none;
color:#FFFFFF;
font-size:13px;
padding:11px 10px 10px 10px;
}

#menu .menu01 li a:hover{
background:#006699;
text-decoration:underline;
}

#conteudo{
width:800px;
padding-bottom:120px;
margin-top:20px;
}

#conteudo h3{
font-family:Grover;
margin-left:10px;
color:#999999;
}

#conteudo .linha{
margin-left:10px;
margin-top:-10px;
}

#conteudo .img{
margin-left:15px;
border:3px solid #CCCCCC;
margin-top:5px;
float:left;}

#conteudo .texto{
margin-top:-10px;
margin-left:170px;
width:623px;
}

#conteudo .texto h3{
color:#333333;
letter-spacing:-1px;
}

#conteudo .texto .h3{
color:#333333;
letter-spacing:-1px;
font-size:12px;
margin-top:-10px;
}

#conteudo .texto p{
color:#666666;
font-size:12px;
font-family:Arial, Helvetica, sans-serif;
margin-left:10px;
margin-top:-13px;
}

#conteudo .linkTodos{
margin-top:30px;
}

#conteudo .linkTodos h3{
text-align:center;
color:#333333;
letter-spacing:-1px;
}

#rodape{
background:url(img/backgroundrodape.jpg) repeat-x;
height:128px;
position: absolute;
bottom: 0;
width:100%;
}

alguém pode me ajudar a centralizar esse site?
de acordo com a resolução

#2 Victor Hugo Odo

Victor Hugo Odo

    Doutor

  • Administradores
  • 779 posts
  • Sexo:Masculino
  • Localidade:São Paulo - SP
  • Interesses:Compartilhar conhecimentos!

Posted 19/04/2010, 20:31

Fica mais difícil centralizar conteúdo quando temos que pensar em várias divs.
Trabalhe com containers, Joque todo o conteúdo dentro de uma div com medida definida e margin:0 auto.
Aí você deixa apenas o rodapé fora do container com largura 100%.

Espero ter ajudado.

Bons ventos

(ok2)

Fórum WMO - Administrador


#3 Jakson Rochelly

Jakson Rochelly

    Novato no fórum

  • Usuários
  • 7 posts
  • Sexo:Masculino

Posted 22/04/2010, 16:27

Você pode simplesmente colocar no body o margin: 0 auto;
Costumo usar assim! ;)

#4 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 22/09/2017, 11:29

Viagra 4 Sale cialis Free Shipping Fluoxetine Tablet Priligy Sans Ordonance Cialis Viagra Generico viagra cialis Best Online Canadian Pharcharmy
Generic Cialis Sales In Uk cialis Cialis 5 Mg Foglietto Illustrativo
Cials Sold In Usa
Amoxicillin For Gum Infection <a href=http://cialtobuy.com>cialis price</a> Paxil Canada Pharmacy No Perscription

#5 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 29/09/2017, 04:34

Controindicazioni Levitra Viagra Sur Paris buy cialis Cialis Gravidanza Amoxicillin Clav Er Viagra Achat Gratuit
Legal Viagra Sales cialis isotretinoin isotret Cephalexin Client Information Sheet
Can Amoxicillin Treat Chlamidia Cephalexin Drug Interactions With Methadone Cephalexin 500 Mg Capsuls cialis Is Levitra Safe Ursachen Levitra Zithromax Dosage For Children

#6 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 09/10/2017, 07:16

Abilify Price Non Prescription Acheter Cialis Brand viagra online Dapoxetine Generique
Amoxicillin Dosage For Children viagra online Cheap Synthroid Online No Prescription

#7 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 25/10/2017, 14:10

Zenegra 100 Buy From Usa viagra online prescription Priligy Originale Commander Viagra Pas Cher
Cialis Professional Samples cheap viagra levitra cialis Direct Pyridium Usa With Doctor Consult
Tadalis Sx Vente 10 Mg viagra Viagra A Casa

#8 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 25/10/2017, 17:08

Amoxil Allergies Amoxicillin 875 Dosage cialis Cialis Prix Levitra Comparaison

#9 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 05/11/2017, 04:42

Ampicillin With Out An Rx Viagra Livraison En 24h Cialis 5 Mg Keine Wirkung online pharmacy Overnight Propranolol How To Buy Stendra Ed Medication Website
Alli In Stock Viagra Online India Cialis Tadalafil Italia viagra online Cheapeast Levaquin Bronchitis No Rx Cheap Valtrex Canada




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq