NECESITO AYUDA (USO DE CAPAS EN DREAMWEAVER)

Shagy_200791

Bovino maduro
#1
QUE TAL AMIGOS BAKUNOS, NECESITO DE SU AYUDA, ESTOY MEDIO VERDE EN ESTO JAJA.
TENGO 3 BOTONES Y TRES CAPAS, QUISIERA QUE CADA BOTON AL DAR CLICK ME MANDE UNA CAPA,
LA IDEA DE USAR CAPAS ES PARA SOLO INGRESAR EL TEXTO O UNA IMAGEN, SIN LA NECESIDAD
DE CREAR OTROS ARCHIVOS HTML, QUISIERA SABER COMO SE HACE, PORFA UNA AYUDITA!!!!!

SI ES NECESARIO QUE LES PASE EL ARCHIVO HTML DIGANLO PORFA.

GRACIAS ESPERO UNA PRONTA RESPUESTA
 

ShadowKnight

Bovino adolescente
#3
Hola, que version de dreamweaver usas? las mas recientes versiones no trabajan con layers, sino con div.
pero te puedo ayudar con eso tambien, si me explicas un poco que quieres que haga
 

Shagy_200791

Bovino maduro
#4
utilizo dreamweaver 8 lo que quiero haces es dividir la pagina html, en la parte izquierda de la pagina que tenga 3 botones y del lado derecho que me muestre el contenido que cada boton tenga, sin necesidad de crear mas archivos html
 

ShadowKnight

Bovino adolescente
#5
ok, supongo te refieres a algo como esto, lo cree usando solo HTML y css hay otras formas que implican javascript

pero ya que solo pediste html y css aqui esta:

Código:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">

#texto01{
	visibility: hidden;
	position:fixed;
}
#texto02{
	visibility: hidden;
	position:fixed;
}
#texto03{
	visibility: hidden;
	position:fixed;
}
#texto01:target {
	visibility: visible;
}

#texto02:target {
	visibility: visible;
}

#texto03:target {
	visibility: visible;
}
</style>
</head>

<body>

<a href="#texto01">Menu 01</a>
<a href="#texto02">Menu 02</a>
<a href="#texto03">Menu 03</a>

<div id="texto01"><textarea name="textarea2" cols="50" rows="12" disabled id="textarea" tabindex="1">TEXTO 01 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, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</textarea></div>

<div id="texto02"><textarea name="textarea" cols="50" rows="12" disabled id="textarea3" tabindex="1" >TEXTO 02 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, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</textarea></div>

<div id="texto03"><textarea name="textarea3" cols="50" rows="12" disabled id="textarea2" tabindex="1">TEXTO 03 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, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum</textarea></div>



</body>
</html>
 

ShadowKnight

Bovino adolescente
#6
Lo unico que falta ahi es por medio de css dar formato a los a tag, y a las areas de texto o divs. Aqui ando si requieres la explicacion de como trabaja
 
Arriba