Bueno, les comento que me esta pasando....Lo que necesito es alinear un texto a la dereche, pero a la vez alineado a una imágen. Seria algo asi:
--------------------------|
|
img |
--------------------------|
texto1
texto2
Espero haberme explicado....
Igualmente les dejo el código con el que estoy trabajando, desde ya mil gracias!!!
Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>URBANCHIP V3.0 || diseño+comunicación</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="JavaScript">
function Popup(ventana){
window.open(ventana,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,top=20,left=10,width=1000,height=750")
}
function FullWin(targeturl){
window.open(targeturl,"","fullscreen")
}
</script>
<style type="text/css">
body {
background-image: url(imagenes/fondo.gif);
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
font-family: "Arial", Trebuchet MS, Tahoma;
font-size: 10px;
color: #FFFFFF;
line-height: 16px;
}
a {
color: #FFFFFF;
text-decoration: none;
}
a:hover {
color: #FFFFFF;
background-color:#000000;
text-decoration: none;
}
#contenedor{
margin-left:250px;
}
p{
text-align: float;
}
</style>
</head>
<body>
<img src="imagenes/img_home.gif" alt="">
<div id="contenedor">
<p><a href="javascript:window.Popup('popup.html');">POP UP || 1000x750</a><br>
<a href="javascript:window.FullWin('full.html')">FullScreem (1024x768)</a></p>
</div>
</body>
</html>