[Ajuda] Dreamweaver

Posta ai o código.....
Terás que colocar o código do Home dentro da div correspondente á barra preta.... penso que possa ser esse o teu problema... mas só vendo o código!!
 
Posta ai o código.....
Terás que colocar o código do Home dentro da div correspondente á barra preta.... penso que possa ser esse o teu problema... mas só vendo o código!!

Aqui fica o codigo:
<!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" />
<title>xxxxxxx</title>
<style type="text/css">
<!--
body {
background-color: #333333;
}
#apDiv1 {
left:173px;
top:166px;
width:87px;
height:47px;
z-index:auto;
position: absolute;
visibility: visible;
overflow: auto;
}
header {
position: absolute;
}
#apDiv2 {
position:absolute;
left:34px;
top:165px;
width:85px;
height:45px;
z-index:1;
}
-->
</style></head>

<body>
<div id="apDiv2"><img src="images/home.gif" alt="" width="87" height="47" /></div>
<div id="menu">
<p align="center"><img src="../images/xxxxxx.jpg" width="960" height="126" /></p>
</div>
<table width="962" height="37" border="0" align="center">
<tr align="center">
<td width="956"><img src="../images/img03.jpg" width="960" height="51" /></td>
</tr>
</table>
<div></div>
</body>
</html>
Se souberes qual o problema explica sffv.

Obrigada :p
 
Última edição:
Permita-me a seguinte proposta de resolução:

body {
background-color: #333333;
}
#apDiv1 {
left:173px;
top:166px;
width:87px;
height:47px;
z-index:auto;
position: absolute;
visibility: visible;
overflow: auto;
}
header {
position: absolute;
}
#apDiv2 {
position:absolute;
background:url(../images/img03.jpg);
width:960px;
height:51px;
z-index:1;
}
-->
</style></head>

<body>
<table width="962" height="37" border="0" align="center">
<tr align="left"><td >
<div id="menu">
<p align="center"><img src="../images/xxxxxx.jpg" width="960" height="126" /></p>
</div>
<div id="apDiv2"><img src="images/home.gif" alt="" width="87" height="47" /></div>
</td>
</tr>
</table>

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


Tinha a as divs desordenadas.... e pode utilizar a propriedade backgroud nos CSS ou mesmo em tabelas para conseguir sobrepor imagens...

Isto, como disse é uma possível solução... espero ter ajudado!
 
E não esquecer que php tem de ser pré-processado, por isso não roda directamente no browser como html e css! Tem de se usar um servidor, como o XAMPP (para windows) ou o LAMP (para linux).

Cumps
 
Back
Topo