hola,que tal?
bueno,queria poner mi pagina igual que esta "http://www.solarstrike.net/" pero con el estilo que tengo,pero no me aparece ni los recuadros con la imagen centrada,ni el enlace con el foro tal cual y situado a la derecha.
Cual es el error?
mi pagina es "http://taxhack.zz.mu/"
Mi index es este:
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="icon" type="image/x-icon" href="http://taxhack.zz.mu/Favicon.ico" />
<title>Taxhack</title>
<link rel="stylesheet" type="text/css" media="all" href="http://taxhack.zz.mu/wp-content/themes/elrincondelbot/style.css" />
<link rel='stylesheet' id='foundation-css' href='http://taxhack.zz.mu/wp-content/themes/discover/css/foundation.css?ver=3.6.1' type='text/css' media='all' />
<link rel='stylesheet' id='superfish-css' href='http://taxhack.zz.mu/wp-content/themes/discover/css/superfish.css?ver=3.6.1' type='text/css' media='all' />
<style type="text/css">
.wp-polls .pollbar {
font-size:18px;
line-height:20px;
height:20px;430 665 549
background:#33b5e5;
border:1px solid #111;
margin:1px;
}
.recentcomments a {
display:inline!important;
margin:0!important;
padding:0!important;
}
.site-title a,.site-description {
color:#33b5e5;
}
body.custom-background {
background-color:#282828;
}
</style>
</head>
<body class="home blog custom-background mp6">
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','UA-29306001-3','ultimarom.com');ga('send','pageview');</script>
<?php include("./Include/menu.php"); ?>
<div class="container" style="margin-top: 20px; margin-bottom: 50px;">
<div class="container">
<div class="row">
<div class="span7">
<h3><u>Noticias</u></h3>
<div class="media well well-small" style="margin-bottom: 50px;">
<div class="pull-left" href="#">
<div style="text-align: center;">
<center><img src="/Administrador.gif" width="64" height="64" class="media-object" /></center>
<span class="muted">Administrator</span><br />
<small class="muted">01-10-2013</small>
</div>
</div>
<div class="media-body">
<h3 class="media-heading">Mantenimiento del sitio web</a></h3>
<span style="color: #FFFF00;"><B> Pagina cerrada por el momento.<br />
<br />
Hemos expirementado unos fallos en la pagina web. Ya que realizacemos un mantenimiento se aplicara una actualización.<br />
<br />
Gracias por su comprension.</B></span>
</div>
</div>
</div>
<?php include("./contador.php"); ?>
<div class="container" style="margin-top: 20px; margin-bottom: 50px;width:400px; float:right;">
<div class="span5">
<h4>Recientes Mensajes del Foro</h4>
<?php include("./Include/post.php"); ?>
</body>
</html>
Mi enlace con phpBB3 es este:
<?php
$con =mysql_connect("mysql.hostinger.es", "usuario", "Contraseña");
mysql_select_db("mi sql", $con);
// Cantidad de post a mostrar y prefijo de las tablas
$ultimos = 10;
$prefijo = "phpbb_";
// Consultas a la base
$result_mensaje=mysql_query("select * from $prefijo"."posts order by post_id desc limit $ultimos",$con);
while($mostrar_m = mysql_fetch_array($result_mensaje)) {
$post=$mostrar_m["post_id"];
$forum_id=$mostrar_m["forum_id"];
$result_foro=mysql_query("select * from $prefijo"."forums where forum_id like $forum_id",$con);
$mostrar_f=mysql_fetch_array($result_foro);
$forum_name = $mostrar_f["forum_name"];
mysql_free_result($result_foro);
?>
<font face="verdana" size="1"><a href="http://taxhack.zz.mu/Menu/Foro/viewtopic.php?p=<?=$post;?>" target="_blank"><? echo $mostrar_m["post_subject"]; ?></a>
en <i><b><?=$forum_name;?></b></i></font>
<?
}
// Cerramos conexión
mysql_free_result($result_mensaje);
mysql_close($con);
?>