28172 sujets

CSS et mise en forme, CSS3

Bonjour,

J'ai un problème de défilement horizontal :

upload/35105-Sanstitre-.png

Pourtant la largeur maximale des images est de 1300px (j'ai une résolution de 1920*1080px).

Le fichier CSS :


body 
{
	font-family: Tahoma;
	font-size: 0.9em;
	color: #e8e7e6;
	background-color: #010101;
	margin: 0;
	padding: 0;
}

#background
{
	background-image: url("images/background.png");
	width: 1300px;
	height: 800px;
	margin: auto;
}

/**************/
/*    Haut    */
/**************/
#header
{
	background-image: url("images/header2.png");
	width: 1300px;
	height: 292px;
	margin: auto;
}
 
.statistiques
{
	font-size: 0.7em;
	float: left;
	position: relative;
	left: 17.5%;
	bottom: 2%;
}
.heure
{

	font-size: 0.7em;
	float: right;
	position: relative;
	right: 17%;
	top: 1%;
}

#propagande
{
	width: 685px;
	position: relative;
	top: 41.75%;
	left: 23.5%;
	height: 20px;
	clear: both;
	font-size: 0.85em;
}

/* Ressources */
#ressources
{
	font-size: 0.74em;
	position: relative;
	top: 53%;
	left: 15.1%;
}

#ressources li 
{ 
	display: inline-block;
	width: 66px;
	margin: 0 2.55em; 
	list-style-type: none;
}

#encheres
{
	width: 850px;
	height: 36px;
	margin: auto;
	position: relative;
	top: 54.5%;
	text-align: center;
	font-size: 0.9em;
}

#messages
{
	position: relative;
	top: 22.25%;
	right: 36.25%;
	font-size: 0.7em;
	text-align: center;
}

#bonus
{
	position: relative;
	top: 9.75%;
	left: 84.7%;
	font-size: 0.85em;
}

/***************/
/*    Corps    */
/***************/
#corps
{
	background-image: url("images/centre_corps.png");
	width: 1000px;
	min-height: 500px;
	margin: auto;
	overflow: hidden;
}

#navigation
{
	float: left;
	background-image: url("images/navigation.png");
	width: 172px;
	height: 417px;
}

#statistiques
{
	float: right;
	background-image: url("images/statistiques.png");
	width: 171px;
	height: 419px;
	text-align: center;
}

#grade_joueur
{
	color: #9e9e9e;
	font-size: 0.7em;
	height: 15px;
	position: relative;
	top: -1.20%;
}

#gestion_grade
{
	font-size: 0.7em;
	height: 25px;
	position: relative;
	top: -0.5%;
}

#forces
{
	font-size: 0.7em;
	height: 90px;
}

#batiments_speciaux
{
	height: 200px;
	position: relative;
	top: 8.1%;
}

#contenu_corps
{
	width: 45%;
	float: left;
	margin-left: 0.15%;
	text-align: center;
	font-size: 0.9em;
	margin-top: -1%;
	padding-bottom: 1%;
}

/* Menu */
#menu_interne
{
	padding-top: 12%;
	padding-left: 6%;
}

#menu_interne ul
{
	width: 156px;
}

#menu_interne li
{
	list-style-type: none;
}

/*************/
/*    Bas    */
/*************/
#footer
{
	background-image: url("images/footer.png");
	width: 1300px;
	height: 85px;
	margin: auto;
	clear: both;
	margin-top: -1.15%;
}

#texte_footer
{
	margin: auto;
	text-align: center;
	font-size: 0.75em;
	position: relative;
	top: 35%;
}

/* Menu bas */
#menu_bas
{
	position: relative;
	left: 18.8%;
	top: 9.9%;
}

#menu_bas li 
{ 
	display: inline;
	margin-right: -4px;
	list-style-type: none;
}

.barre_dessous
{
	width: 1000px;
	text-align: center;
	margin: auto;
	font-size: 0.85em;
	margin-top: 1%;
	margin-bottom: 1%;
}

/****************/
/*    Divers    */
/****************/
.fond_gris
{
	background-image: url("images/fond_corps_gris.png");
	width: 652px;
	margin-top: -2%;
	margin-left: 0.25%;
	padding-top: 0.5%;
	padding-bottom: 0.25%;
}

.fond_gris p
{
	width: 98%;
}

/* Textes */
.gras
{
	font-weight: bold;
}

.italique
{
	font-style: italic;
}

.souligne, .sousligne
{
	text-decoration: underline;
}

.evidence
{
	color: #3ca26e;
}

.centrer_element
{
  text-align: center;
}

/* Liens */
.evidence_lien
{
	color: #2d684a;
	text-decoration: underline;
}

a
{
	color: #aee4cc;
	text-decoration: none;
}

a:hover
{
	color: #aee4cc;
	text-decoration: underline;
}

a:visited
{
	color: #aee4cc;
}

/* Titres */
.titre_menu
{
	line-height: 1.5;
}

.simple_menu
{
	line-height: 1.0;
}

h2
{
	font-weight: lighter;
	color: #aee4cc;
	text-transform: uppercase;
	font-size: 0.85em;
	background-image: url("images/background_titre.png");
	height: 25px;
	width: 654px;
	display:block;  
	line-height: 21px;
}

/* Formulaires */
input, textarea
{
color: #aee4cc;
background-color: #4a504d;
border: 1px solid black;
}


Merci d'avance !
ok c'est ta <div id="bonus"> qui fait scroller avec son left: 84.7%;
tu n'as fait que des positionnement en relatif, je ne sais pas si c'est une bonne chose !
en cachant cette div tu as toujours un scroll :
cette fois c'est <div id="menu_bas">.

comme solution rapide, je pense que tu devrais mettre des width et/ou laisser tomber les position relative.

++