28172 sujets

CSS et mise en forme, CSS3

Bonjour,

Ce type de message a du être posé 50 fois mais je ne trouve pas la solution.

Sous ie6 j'ai ma DIV contenant mon contenu principal qui est renvoyé à la ligne.
Comment régler cela ?

Mon fichier index :


<body>

<div id="main">
	<div id="header"><div id="top"><jdoc:include type="modules" name="top" /></div></div>
	

		<div id="left">
			<img src='<?php echo $this->baseurl ?>/templates/kikentai/images/kikentai.jpg'>
			<br />
			<jdoc:include type="modules" name="left" />
                        <br />
			<jdoc:include type="modules" name="user4" />
			<br />
			<jdoc:include type="modules" name="user1" />
		</div>

		<div id="maincontent"><jdoc:include type="component" /></div>

	
	<div id="footer"><jdoc:include type="modules" name="footer" /></div>
</div>


Et mon CSS :


/*****************************/
/*** Core html setup stuff ***/
/*****************************/

html {
  height: 100%;
  margin-bottom: 1px;
}

form {
  margin: 0;
  padding: 0;
}

body {
	font-family: Helvetica,Arial,sans-serif;
	line-height: 1.3em;
	margin: 0px 0px 0px 0px;
	font-size: 12px;
	color: #333;
}

#main {
	width: 1000px;
	margin:0 auto;
}

#header {
	width: 1000px;
	height: 281px;
	background: url(../images/header.jpg) 0 0 no-repeat;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0px;
}

#top {
	position: relative;
	height: 50px;
	width: 750px;
	padding-left: 50px;
	margin-left: 170px;
	padding-top: 250px;
	}
	
#left {
	float:left;
	width: 200px;
	}

#maincontent {
	position: absolute;
	float:left;
	left: 0px;
	margin-left: 0px;
	width: 400px;
	color: #000000;
	}
	
#footer {

	text-align: center;
	width: 1000px;
	height: 281px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	padding-bottom: 0px;
	clear: both;
}



/* menu links */



.column_separator {
	border-left: 1px dashed #e0e0e0;
	padding-left: 10px;
}



/* content styles */
table.contentpaneopen, table.contentpane {
	margin: 0;
	padding: 0;
	width: auto;
}



Si besoin :

http://www.kikentai.eu

Merci d'avance
Modifié par archimede49 (08 Sep 2009 - 14:09)