28111 sujets

CSS et mise en forme, CSS3

Bonjour

J'ai un probleme de decalage sous firefox sa marche impeccable mais sous ie c'est décalé... de plus impossible de mettre mon footer en bas de page pouvez vous m'aidez svp


 /* body */

body, html {
scrollbar-face-color: #ffffff;
scrollbar-arrow-color: #898989;
scrollbar-shadow-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-track-color: #ffffff;
scrollbar-3dlight-color: #ffffff;


margin: 0px;
padding: 0px;
background-color:#FEFEFE;
font-size: 7pt; color:#000000; font-family: Tahoma; font-weight: normal}





/******* design *******/

.layout {
position:absolute;
	top: 0px;
	left: 45px;
	margin: 0px;
	padding: 0px;
	
background: url(../design/haut.jpg) no-repeat;
width: 800px;
height: 405px;
text-align: left;
}

.bas {
position:absolute;
	top: 404px;
	left: 45px;
	margin: 0px;
	padding: 0px;
	
background: url(../design/bas.gif) repeat-y ;
width: 800px;
height: 100%;
text-align: left;
}


.colonnegauche {
float:left;
	
	margin: 7px 0px 0px 70px;
	padding: 0px;
	
	
	font-family:verdana;
font-size:8px;
color:#000000;
font-weight:bold;
width: 210px;
height: AUTO;
text-align: left;
}

.colonnedroite {
float:right;
margin: 7px 41px 0px 0px;


padding: 0px;
		
width: 474px;
height: AUTO;
text-align: left;
}

.footer {
position:absolute;
	top: 766px;
	left: 45px;
	margin: 0px;
	padding: 0px;
background: transparent url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}

.footertexte {
position:absolute;
top: 18px;
left: 332px;
margin: 0px;
padding: 0px;

font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}

.maj {
position:absolute;
	top: 326px;
	left: 538px;
	margin: 0px;
	padding: 0px;
	
width: 136px;
height: 69px;
text-align: left;
}

/************** zone cliquable **************/
#zone1 {    
float: left;
width : 84px;
height: 15px;
margin-left: 80px;
margin-top: 30px;
}

#zone2 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}
#zone3 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone4 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone5 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone6 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}


/************** couleurs fonts liens **************/
a:link, a:visited{
	color: #B7B7B7;
	text-decoration: none;
	
}

a:hover{
	color: #C7D800;
	text-decoration: none;
}


et voici mon index



[code]<div class="bas">
	<div class="colonnegauche">	
	<img src="design/colonnegauche/dernieresnews.gif" vspace="2" border="0"/>
	<?
 ///---Les 12 Dernieres News Colonne Gauche
$nb = 0;
while ($line = mysql_fetch_assoc($res2))
{
        $nb++;
        if ($nb == 1) continue;

        $title = $line["title"];
        $author = $line["starter_name"];
        $date = date("d/m/Y", strtotime($line['starter_date']));
        $id = $line["tid"];

//        echo "<ul>";
        if (strlen($title) < $LIMIT_TEXT2)
        {
                print "<img src=\"design/colonnegauche/logonews.gif\"> <a href=\"news.php?tid=$id\">" . extract_title($title) . "</a><br>";
        }
        else
        {
                print "<img src=\"design/colonnegauche/logonews.gif\"> <a href=\"news.php?tid=$id\" >" . substr(extract_title($title), 0, $LIMIT_TEXT2 - 3) . "...</a><br>";
        }
//        echo "</ul>";
}
?>
<br/> 
<img src="design/colonnegauche/derniersposts.gif" border="0"/>
<br/> 
<img src="design/colonnegauche/partenariats.gif" border="0"/>

<br/>
<img src="design/colonnegauche/nouslier.gif" border="0"/>
<br/>
<img src="design/colonnegauche/stats.gif" border="0"/>
<br/>
<img src="design/colonnegauche/disclaimer.gif" border="0"/>
	</div>

	<div class="colonnedroite">
	<? 
///---Les 6 News Premère Page
while ($line = mysql_fetch_assoc($res))
{
        $title = $line["title"];
        $author = $line["starter_name"];
        $date = date("d/m/Y", strtotime($line['starter_date']));
        $id = $line["tid"];

        $res_post = mysql_query("SELECT * FROM `ibf_posts` WHERE topic_id=" . $line["tid"] . " AND author_id=" . $line['starter_id'] . " LIMIT 1", $link) or die(mysql_error());
        $post_sql = mysql_fetch_assoc($res_post);
        $post = $post_sql["post"];
        mysql_free_result($res_post);

        $res_post = mysql_query("SELECT COUNT(*) AS nb FROM `ibf_posts` WHERE topic_id=" . $line["tid"] . " GROUP BY topic_id", $link) or die(mysql_error());
        $nb_comment_sql = mysql_fetch_assoc($res_post);
        $nb_comment = $nb_comment_sql["nb"] - 1;
        mysql_free_result($res_post);

        ?>
    <td> <img src="<?=extract_img($title)?>" width="81" height="97" align="left" hspace="2" alt="news"/> 
      <?
        echo "<h3>" . extract_title($title) . "</h3> ";
        if (strlen($post) < $LIMIT_TEXT)
        {
                 print $post; 
        }
        else
        {
                print substr($post, 0, $LIMIT_TEXT - 3);
        }
        echo "<a href=\"news.php?tid=$id\"><b> [Suite...]</b></a><br/><br/>";
}
?>
    </td>
<?
// Et on ferme la connexion
mysql_free_result($res);

mysql_close($link);
?>
	
</div>



</div>

<div style="position:absolute; width:136px; height:69px; z-index:1; left: 114px; top: 50px;">
  	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=			 "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="455" height="245" title="animationhaut">
    <param name="movie" value="design/flash/haut.swf" />
    <param name="quality" value="high" />
    <embed src="design/flash/haut.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="455" height="245"></embed>
  </object>



</div>
<div class="footer">
	<div class="footertexte">
	<?php


	include 'footertexte.php';

	?> 
	</div>
</div>

Modifié par pauline24030 (12 Jan 2006 - 17:26)
Je n'ai pas pris le temps de tout approfondir, mais ton div footer est en mode absolute. à mon avis le mode par défaut ou le mode relative sont mieux car ils s'inserent dans le flux
ok je vais essayer pour le footer

j'ai mis sa


.footer {

	margin: 0px;
	padding: 0px;
background: transparent url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}

.footertexte {

margin: 0px;
padding: 0px;

font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}


cependant le footer ce met tout en haut de ma page
Modifié par pauline24030 (09 Jan 2006 - 15:42)
essaie avec position:relative
Pour centrer ton div horizontalement, utilise left:50%, puis ajuste le margin-left.
Pour centrer verticalement, utilise top:10px et joue avec le margin-top:100px par exemple.
Si ça ne marche pas, joue avec la propriété position, ça devrait marcher...
as-tu un lien ou on pêut trouver ton site?
Modifié par Ralfman68 (09 Jan 2006 - 15:56)
le pb c que j'ai mis un background qui se repete donc la longueur change selon les pages mais le footer ne veut pas se retrouver en bas

je vais essayer de faire ce que tu mas dis pour voir
Modifié par pauline24030 (09 Jan 2006 - 17:59)
essaie avec top:100% joli site soit dit en passant .
Si ce n'est pas un probleme de CSS, c'est sans peut-etre un probleme d'agencement des divs dans le code.
Modifié par Ralfman68 (09 Jan 2006 - 16:13)
j'ai mis sa tjs rien

et sinon il est bien placé sous mon index ou est ce que je dois le placé dans la div ou le background se repete

merci pour le compliment

.footer {
position: relative;

top:100%;
 

background: transparent url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}

.footertexte {

margin: 0px;
padding: 0px;
font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}

.maj {
position:absolute;
top: 326px;
left: 538px;
margin: 0px;
padding: 0px;
width: 136px;
height: 69px;
text-align: left;
}

Modifié par pauline24030 (09 Jan 2006 - 16:16)
finalement sa n'est pas resolu j'ai un probleme tout en bas sous firefox il y a pas d'espace blanc tandis que sur ie oui

voici on code

[code].footer {
position: relative;
top:100%;
background: url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}

.footertexte {

margin: 15px;
margin-left:300px;
padding: 0px;
font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}

Modifié par pauline24030 (09 Jan 2006 - 16:49)
Modérateur
Bonjour Pauline,

Simplement pour te signaler qu'à l'occasion, tu ne respecte pas l'une des règles du forum.

Règles du forum a écrit :

Il est rappelé également que ce forum est... un forum, et non un tchat ou un support SMS. Vous êtes donc priés de respecter un minimum ce langage qu'est le français.


Les pseudo-mots tels que c, fo, pb, tjs ne sont pas les bienvenues sur ce forum. Je t'invite fortement à utiliser les mots complets. C'est plus facile à lire pour les gens qui veulent te donner un coup de main, et ca réhausse la qualité des messages sur le forum. Cela fait également un peu plus sérieux. L'idée n'est pas de ne plus faire de fautes (personne n'est parfait), mais simplement éviter les abbréviations utilisés sur les TCHATS et les SMS. Je t'invite aussi à toujours relire tes messages pour t'assurer qu'il n'y a pas de coquilles, comme des lettres manquantes à certains de tes mots. Tu peux éditer tes messages avec le bouton à côté de chacun d'eux.

Merci de te conformer aux règles dans la mesure du possible.
Bonne continuation
Amicalement Smiley smile
Modifié par Tony Monast (09 Jan 2006 - 16:54)
bon le footer marche sous ie mais pas sous firefox

le code modifié


.footer {


top:100%;
background: url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}



.footertexte {

margin: 15px;
margin-left:300px;
padding: 0px;
font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}
pauline24030 a écrit :
Bonjour

J'ai un probleme de decalage sous firefox sa marche impeccable mais sous ie c'est décalé... de plus impossible de mettre mon footer en bas de page pouvez vous m'aidez svp


 /* body */

body, html {
scrollbar-face-color: #ffffff;
scrollbar-arrow-color: #898989;
scrollbar-shadow-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-track-color: #ffffff;
scrollbar-3dlight-color: #ffffff;


margin: 0px;
padding: 0px;
background-color:#FEFEFE;
font-size: 7pt; color:#000000; font-family: Tahoma; font-weight: normal}





/******* design *******/

.layout {
position:absolute;
	top: 0px;
	left: 45px;
	margin: 0px;
	padding: 0px;
	
background: url(../design/haut.jpg) no-repeat;
width: 800px;
height: 405px;
text-align: left;
}

.bas {
position:absolute;
	top: 404px;
	left: 45px;
	margin: 0px;
	padding: 0px;
	
background: url(../design/bas.gif) repeat-y ;
width: 800px;
height: 100%;
text-align: left;
}


.colonnegauche {
float:left;
	
	margin: 7px 0px 0px 70px;
	padding: 0px;
	
	
	font-family:verdana;
font-size:8px;
color:#000000;
font-weight:bold;
width: 210px;
height: AUTO;
text-align: left;
}

.colonnedroite {
float:right;
margin: 7px 41px 0px 0px;


padding: 0px;
		
width: 474px;
height: AUTO;
text-align: left;
}

.footer {
position:absolute;
	top: 766px;
	left: 45px;
	margin: 0px;
	padding: 0px;
background: transparent url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}

.footertexte {
position:absolute;
top: 18px;
left: 332px;
margin: 0px;
padding: 0px;

font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}

.maj {
position:absolute;
	top: 326px;
	left: 538px;
	margin: 0px;
	padding: 0px;
	
width: 136px;
height: 69px;
text-align: left;
}

/************** zone cliquable **************/
#zone1 {    
float: left;
width : 84px;
height: 15px;
margin-left: 80px;
margin-top: 30px;
}

#zone2 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}
#zone3 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone4 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone5 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone6 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}


/************** couleurs fonts liens **************/
a:link, a:visited{
	color: #B7B7B7;
	text-decoration: none;
	
}

a:hover{
	color: #C7D800;
	text-decoration: none;
}


et voici mon index



[code]<div class="bas">
	<div class="colonnegauche">	
	<img src="design/colonnegauche/dernieresnews.gif" vspace="2" border="0"/>
	<?
 ///---Les 12 Dernieres News Colonne Gauche
$nb = 0;
while ($line = mysql_fetch_assoc($res2))
{
        $nb++;
        if ($nb == 1) continue;

        $title = $line["title"];
        $author = $line["starter_name"];
        $date = date("d/m/Y", strtotime($line['starter_date']));
        $id = $line["tid"];

//        echo "<ul>";
        if (strlen($title) < $LIMIT_TEXT2)
        {
                print "<img src=\"design/colonnegauche/logonews.gif\"> <a href=\"news.php?tid=$id\">" . extract_title($title) . "</a><br>";
        }
        else
        {
                print "<img src=\"design/colonnegauche/logonews.gif\"> <a href=\"news.php?tid=$id\" >" . substr(extract_title($title), 0, $LIMIT_TEXT2 - 3) . "...</a><br>";
        }
//        echo "</ul>";
}
?>
<br/> 
<img src="design/colonnegauche/derniersposts.gif" border="0"/>
<br/> 
<img src="design/colonnegauche/partenariats.gif" border="0"/>

<br/>
<img src="design/colonnegauche/nouslier.gif" border="0"/>
<br/>
<img src="design/colonnegauche/stats.gif" border="0"/>
<br/>
<img src="design/colonnegauche/disclaimer.gif" border="0"/>
	</div>

	<div class="colonnedroite">
	<? 
///---Les 6 News Premère Page
while ($line = mysql_fetch_assoc($res))
{
        $title = $line["title"];
        $author = $line["starter_name"];
        $date = date("d/m/Y", strtotime($line['starter_date']));
        $id = $line["tid"];

        $res_post = mysql_query("SELECT * FROM `ibf_posts` WHERE topic_id=" . $line["tid"] . " AND author_id=" . $line['starter_id'] . " LIMIT 1", $link) or die(mysql_error());
        $post_sql = mysql_fetch_assoc($res_post);
        $post = $post_sql["post"];
        mysql_free_result($res_post);

        $res_post = mysql_query("SELECT COUNT(*) AS nb FROM `ibf_posts` WHERE topic_id=" . $line["tid"] . " GROUP BY topic_id", $link) or die(mysql_error());
        $nb_comment_sql = mysql_fetch_assoc($res_post);
        $nb_comment = $nb_comment_sql["nb"] - 1;
        mysql_free_result($res_post);

        ?>
    <td> <img src="<?=extract_img($title)?>" width="81" height="97" align="left" hspace="2" alt="news"/> 
      <?
        echo "<h3>" . extract_title($title) . "</h3> ";
        if (strlen($post) < $LIMIT_TEXT)
        {
                 print $post; 
        }
        else
        {
                print substr($post, 0, $LIMIT_TEXT - 3);
        }
        echo "<a href=\"news.php?tid=$id\"><b> [Suite...]</b></a><br/><br/>";
}
?>
    </td>
<?
// Et on ferme la connexion
mysql_free_result($res);

mysql_close($link);
?>
	
</div>



</div>

<div style="position:absolute; width:136px; height:69px; z-index:1; left: 114px; top: 50px;">
  	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=			 "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="455" height="245" title="animationhaut">
    <param name="movie" value="design/flash/haut.swf" />
    <param name="quality" value="high" />
    <embed src="design/flash/haut.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="455" height="245"></embed>
  </object>



</div>
<div class="footer">
	<div class="footertexte">
	<?php


	include 'footertexte.php';

	?> 
	</div>
</div>
Bonjour

J'ai un probleme de decalage sous firefox sa marche impeccable mais sous ie c'est décalé... de plus impossible de mettre mon footer en bas de page pouvez vous m'aidez svp


 /* body */

body, html {
scrollbar-face-color: #ffffff;
scrollbar-arrow-color: #898989;
scrollbar-shadow-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-track-color: #ffffff;
scrollbar-3dlight-color: #ffffff;


margin: 0px;
padding: 0px;
background-color:#FEFEFE;
font-size: 7pt; color:#000000; font-family: Tahoma; font-weight: normal}





/******* design *******/

.layout {
position:absolute;
	top: 0px;
	left: 45px;
	margin: 0px;
	padding: 0px;
	
background: url(../design/haut.jpg) no-repeat;
width: 800px;
height: 405px;
text-align: left;
}

.bas {
position:absolute;
	top: 404px;
	left: 45px;
	margin: 0px;
	padding: 0px;
	
background: url(../design/bas.gif) repeat-y ;
width: 800px;
height: 100%;
text-align: left;
}


.colonnegauche {
float:left;
	
	margin: 7px 0px 0px 70px;
	padding: 0px;
	
	
	font-family:verdana;
font-size:8px;
color:#000000;
font-weight:bold;
width: 210px;
height: AUTO;
text-align: left;
}

.colonnedroite {
float:right;
margin: 7px 41px 0px 0px;


padding: 0px;
		
width: 474px;
height: AUTO;
text-align: left;
}

.footer {
position:absolute;
	top: 766px;
	left: 45px;
	margin: 0px;
	padding: 0px;
background: transparent url(../design/footer.jpg) no-repeat;
width: 800px;
height: 80px;
text-align: left;
}

.footertexte {
position:absolute;
top: 18px;
left: 332px;
margin: 0px;
padding: 0px;

font-family:verdana;
font-size:8px;
color:#FFFFFF;
font-weight:bold;
width: 419px;
height: 42px;
text-align: left;
}

.maj {
position:absolute;
	top: 326px;
	left: 538px;
	margin: 0px;
	padding: 0px;
	
width: 136px;
height: 69px;
text-align: left;
}

/************** zone cliquable **************/
#zone1 {    
float: left;
width : 84px;
height: 15px;
margin-left: 80px;
margin-top: 30px;
}

#zone2 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}
#zone3 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone4 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone5 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}

#zone6 {    
float: left;
width : 84px;
height: 15px;
margin-left: 15px;
margin-top: 30px;
}


/************** couleurs fonts liens **************/
a:link, a:visited{
	color: #B7B7B7;
	text-decoration: none;
	
}

a:hover{
	color: #C7D800;
	text-decoration: none;
}


et voici mon index



[code]<div class="bas">
	<div class="colonnegauche">	
	<img src="design/colonnegauche/dernieresnews.gif" vspace="2" border="0"/>
	<?
 ///---Les 12 Dernieres News Colonne Gauche
$nb = 0;
while ($line = mysql_fetch_assoc($res2))
{
        $nb++;
        if ($nb == 1) continue;

        $title = $line["title"];
        $author = $line["starter_name"];
        $date = date("d/m/Y", strtotime($line['starter_date']));
        $id = $line["tid"];

//        echo "<ul>";
        if (strlen($title) < $LIMIT_TEXT2)
        {
                print "<img src=\"design/colonnegauche/logonews.gif\"> <a href=\"news.php?tid=$id\">" . extract_title($title) . "</a><br>";
        }
        else
        {
                print "<img src=\"design/colonnegauche/logonews.gif\"> <a href=\"news.php?tid=$id\" >" . substr(extract_title($title), 0, $LIMIT_TEXT2 - 3) . "...</a><br>";
        }
//        echo "</ul>";
}
?>
<br/> 
<img src="design/colonnegauche/derniersposts.gif" border="0"/>
<br/> 
<img src="design/colonnegauche/partenariats.gif" border="0"/>

<br/>
<img src="design/colonnegauche/nouslier.gif" border="0"/>
<br/>
<img src="design/colonnegauche/stats.gif" border="0"/>
<br/>
<img src="design/colonnegauche/disclaimer.gif" border="0"/>
	</div>

	<div class="colonnedroite">
	<? 
///---Les 6 News Premère Page
while ($line = mysql_fetch_assoc($res))
{
        $title = $line["title"];
        $author = $line["starter_name"];
        $date = date("d/m/Y", strtotime($line['starter_date']));
        $id = $line["tid"];

        $res_post = mysql_query("SELECT * FROM `ibf_posts` WHERE topic_id=" . $line["tid"] . " AND author_id=" . $line['starter_id'] . " LIMIT 1", $link) or die(mysql_error());
        $post_sql = mysql_fetch_assoc($res_post);
        $post = $post_sql["post"];
        mysql_free_result($res_post);

        $res_post = mysql_query("SELECT COUNT(*) AS nb FROM `ibf_posts` WHERE topic_id=" . $line["tid"] . " GROUP BY topic_id", $link) or die(mysql_error());
        $nb_comment_sql = mysql_fetch_assoc($res_post);
        $nb_comment = $nb_comment_sql["nb"] - 1;
        mysql_free_result($res_post);

        ?>
    <td> <img src="<?=extract_img($title)?>" width="81" height="97" align="left" hspace="2" alt="news"/> 
      <?
        echo "<h3>" . extract_title($title) . "</h3> ";
        if (strlen($post) < $LIMIT_TEXT)
        {
                 print $post; 
        }
        else
        {
                print substr($post, 0, $LIMIT_TEXT - 3);
        }
        echo "<a href=\"news.php?tid=$id\"><b> [Suite...]</b></a><br/><br/>";
}
?>
    </td>
<?
// Et on ferme la connexion
mysql_free_result($res);

mysql_close($link);
?>
	
</div>



</div>

<div style="position:absolute; width:136px; height:69px; z-index:1; left: 114px; top: 50px;">
  	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=			 "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="455" height="245" title="animationhaut">
    <param name="movie" value="design/flash/haut.swf" />
    <param name="quality" value="high" />
    <embed src="design/flash/haut.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="455" height="245"></embed>
  </object>



</div>
<div class="footer">
	<div class="footertexte">
	<?php


	include 'footertexte.php';

	?> 
	</div>
</div>
pauline24030 a écrit :

dapres ce que j'ai vu mon footer est en relation avec ma colonne de droite c pour sa quil se met pas tout en bas

@pauline24030.

Je t'ai demandé de te conformer aux règles ici :
http://forum.alsacreations.com/topic-4-10291-2-resoluPb-background.html#p84221

Et Tony Monast t'a fait la même remarque ici :
http://forum.alsacreations.com/topic-4-10312-1.html#p84299

Si tu ne te conformes pas aux règles en ce qui concerne les conventions d'écriture, je vais devoir prendre des sanctions.

Merci d'éditer tes posts précédents afin de les rendre conformes.
j'ai trouvé la solution cependant connaissez vous un hack pour eviter que le background passe en dessous du footer sous ie merci
je vois bien le problème , car j'ai le même . Mais la solution n'est pas claire.

et le sujet ne me parait pas resolu

le footer est toujours en position absolue et il ne se met pas en bas de page en fonction de la taille de l'ecran.

[#]En fait j'ai trouver une solution
http://limpid.nl/lab/css/fixed/footer

Smiley lol

Modifié par [SK]Matt (26 Sep 2006 - 17:03)