Jump to content


OxHost

Member Since 19/01/2005
Offline Last Active 12/01/2006, 08:49
-----

Posts I've Made

In Topic: Janela ....

22/02/2005, 16:11

Esse script funciona, é so saber utilizar, sempre utilizei ele, tente olhar o modelo e alterar apenas o básico com a imagem e faça um outro documento com um link para este.

In Topic: Janela ....

17/02/2005, 12:51

Eu já tive esse problema também vou colar o script abaixo para você, funciona muito bem.

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>titulo</title>
<script language="javascript"><!--
var i=0;
function resize() {
  if (navigator.appName == 'Netscape') i=40;
  if (document.images[0]) window.resizeTo(document.images[0].width +30, document.images[0].height+60-i);
  self.focus();
}
//--></script>
</head>
<body onload="resize();">
<img src="images/arquivo.jpeg" border="0" width="225" height="225"></body>
</html>

In Topic: Quando Passo O Mouse, A Linha Da Tabela

01/02/2005, 20:31

dentro da tag:

<HEAD>
<style>
#tabela {
border: 1px solid #FF0000;
}
#tabela:hover {
border: 1px solid #000000;
}
</style>
</HEAD>

É so procurar pela tag head e colocar o o style dentro.

[]s

In Topic: Quando Passo O Mouse, A Linha Da Tabela

26/01/2005, 15:41

Isso é bem simples


Codigo CSS

#tabela {
	border: 1px solid #FF0000;
}
#tabela:hover {
	border: 1px solid #000000;
}

A tabela:

<table width="50%"  border="5" cellspacing="5" cellpadding="5">
  <tr>
    <td id="tabela">&nbsp;</td>
  </tr>
</table>


[]s

In Topic: Ver Os Iframes No Dw

26/01/2005, 15:37

Vc pode utilizar a função PHP require que funciona parecido como uma iframe, exemplo:

<?php require("pasta/arquivo.htm") ?>

Essa função mostra o contudo atualizado na página, mais apenas mostra ele!
jah as dimensões vc precisara definir no arquivo principal.

[]s

IPB Skin By Virteq