¿Nuevo usuario?
Puedes registrarte aquí
 
       
Menú principal
 
 Navegación
Buscar
dpForo
dpFAQ
dpManuales
dpDescargas
dpThemes
Noticias por Temas
Recomiéndanos
Enlaces
Créditos
dzStaffStatus
Miembros:  Administradores
No Conectado  el_cuervo  
No Conectado  Dixso  
Miembros:  Colaboradores
No Conectado  AnyKiller  
No Conectado  nestormateo  
No Conectado  docser  
Miembros:  Moderadores
No Conectado  cardiru  
No Conectado  javiermisol  
Miembros:  Traductores
No Conectado  gnrx  
Miembros:  Miembros:
Ultimo:  Nuevos Hoy: 6
Ultimo:  Nuevos Ayer: 7
Ultimo:  Total: 71477
Ultimo:  Ultimo:
jgonell2
Miembros:  Conectados
Miembros:  Miembros: 0
Invitados:  Invitados: 62
Total:  Total: 62
Miembros:  Miembros Online
No hay miembros conectados
Sponsor
dp-Tools
 Generador de Menús
 Pop-Up Maker
 Generador de Bloques
 Generador de Módulos
Enlázanos


Texto del enlace:


Otros Banners:



Theme creado por
dev-postnuke.com

 Foro dev-postnuke.com
  Postnuke :: Configuración de Themes
  Instalacion tema kiowa, fallo no puedo ver mensajes de inicio.

Bienvenido invitado

Moderado por: el_cuervo, Dixso, AnyKiller, cardiru, javiermisol << Tema anterior   Tema siguiente >>
Imprimir tema
Autor Tema: Instalacion tema kiowa, fallo no puedo ver mensajes de inicio.
makaco
Enviado: 12/04/2005 a las 09:04
Novato
Novato


Karma: 0 (0 Votos)

Registrado: 05/04/05
Mensajes: 8

Estado: Desconectado
Ultima visita: 04/03/06
Despues de instalar el tema kiowa, lo que me sucede es que en el inicio no puedo ver los mensajes. No se por que sucede esto, pero es algo que me molesta por que es un tema que me gusta personalmente y no quiero renunciar a el. Si alguien tiene idea de como puedo solucionarlo que me diga algo, se lo agradeceria.
makaco Enviar MP


Dixso
Enviado: 12/04/2005 a las 12:04
Administrador
Administrador

avatar

Karma: 8 (135 Votos)

Registrado: 24/02/04
Mensajes: 2588

Estado: Desconectado
Ultima visita: 18/06/08
Pon aquí tu web, para poderlo ver.
Porque no te entiendo muy bien confused
Un saludo wink
Dixso Enviar MP WwW
makaco
Enviado: 12/04/2005 a las 17:04
Novato
Novato


Karma: 0 (0 Votos)

Registrado: 05/04/05
Mensajes: 8

Estado: Desconectado
Ultima visita: 04/03/06
Con los temas clasicos de postnuke, el la pagina de inicio puedo ver los textos de los mensajes con normalidad. biggrin . Cuando me paso al tema "kiowa" que es un tema que tengo personalizado con li logo y algunos detalles mas, (Fondo negro) no puedo ver los mensajes de centro de la pantalla y no le encuentro solucion, pienso que el texto pueda estar en negro como el fondo, pero no se como configurarlo. los archivos del tema son estos: theme.php, topheader.php, header.php, footer.php. Tema "kiowa", texto theme.php:

<?php

/************************************************************/
/* IMPORTANT NOTE FOR THEMES DEVELOPERS! */
/* */
/* When you start coding your theme, if you want to */
/* distribute it, please double check it to fit the HTML */
/* 4.01 Transitional Standard. You can use the W3 validator */
/* located at http://validator.w3.org */
/* If you don't know where to start with your theme, just */
/* start modifying this theme, it's validate and is cool wink */
/************************************************************/

/************************************************************/
/* Theme Colors Definition */
/* */
/* Define colors for your web site. $bgcolor2 is generaly */
/* used for the tables border as you can see on OpenTable() */
/* function, $bgcolor1 is for the table background and the */
/* other two bgcolor variables follows the same criteria. */
/* $texcolor1 and 2 are for tables internal texts */
/************************************************************/

$bgcolor1 = "#000000";
$bgcolor2 = "#000000";
$bgcolor3 = "#000000";
$bgcolor4 = "#000000";
$textcolor1 = "#000000";
$textcolor2 = "#000000";

/************************************************************/
/* OpenTable Functions */
/* */
/* Define the tables look&feel for you whole site. For this */
/* we have two options: OpenTable and OpenTable2 functions. */
/* Then we have CloseTable and CloseTable2 function to */
/* properly close our tables. The difference is that */
/* OpenTable has a 100% width and OpenTable2 has a width */
/* according with the table content */
/************************************************************/

function OpenTable() {
global $bgcolor1, $bgcolor2;
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\">
\n";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\">
\n";
}

function CloseTable() {
echo "
\n";
}

function OpenTable2() {
global $bgcolor1, $bgcolor2;
echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\" align=\"center\">
\n";
echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\">
\n";
}

function CloseTable2() {
echo "
\n";
}

/************************************************************/
/* FormatStory */
/* */
/* Here we'll format the look of the stories in our site. */
/* If you dig a little on the function you will notice that */
/* we set different stuff for anonymous, admin and users */
/* when displaying the story. */
/************************************************************/

function FormatStory($thetext, $notes, $aid, $informant) {
global $anonymous;
if ($notes != "") {
$notes = "

"._NOTE." $notes\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
echo "<font size=\"2\" color=\"#505050\">$thetext$notes\n";
} else {
if($informant != "") {
$boxstuff = "<a href=\"user.php?op=userinfo&uname=$informant\">$informant ";
} else {
$boxstuff = "$anonymous ";
}
$boxstuff .= ""._WRITES." \"$thetext\"$notes\n";
echo "<font size=\"2\" color=\"#505050\">$boxstuff\n";
}
}

/************************************************************/
/* Function themeheader() */
/* */
/* Control the header for your site. You need to define the */
/* BODY tag and in some part of the code call the blocks */
/* function for left side with: blocks(left); */
/************************************************************/

function themeheader() {
global $user, $banners, $sitename, $slogan, $cookie, $prefix;
cookiedecode($user);
$username = $cookie[1];
if ($username == "") {
$username = "Anonymous";
}
echo "\n"
.""
."";

echo "<body bgcolor=\"#000000\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\" leftmargin=\"1\" topmargin=\"1\">\n";

if ($banners) {
include("banners.php");
}
include ("themes/kiowa/topheader.php");

echo "<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" align=\"center\"><td align=\"center\">"
."<img src=\"themes/kiowa/images/logo.jpg\" border=\"0\" alt = \"Nuke Solutions\">";
include ("themes/kiowa/header.php");



echo "\n"
."<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#000000\" align=\"center\"><tr valign=\"top\">\n"
."<td bgcolor=\"#000000\"><img src=\"themes/NukeNews/images/pixel.gif\" width=\"1\" height=\"20\" border=\"0\" alt=\"\">\n"
."<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#000000\" align=\"center\"><tr valign=\"top\">\n"
."<td bgcolor=\"#000000\"><img src=\"themes/NukeNews/images/pixel.gif\" width=\"5\" height=\"1\" border=\"0\" alt=\"\">\n"
."<td bgcolor=\"#000000\" width=\"150\" valign=\"top\">\n";
blocks(left);
echo "<img src=\"themes/NukeNews/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"><td width=\"100%\">\n";
}

/************************************************************/
/* Function themefooter() */
/* */
/* Control the footer for your site. You don't need to */
/* close BODY and HTML tags at the end. In some part call */
/* the function for right blocks with: blocks(right); */
/* Also, $index variable need to be global and is used to */
/* determine if the page your're viewing is the Homepage or */
/* and internal one. */
/************************************************************/

function themefooter() {
global $index;
if ($index == 1) {
echo "<img src=\"themes/NukeNews/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"><td valign=\"top\" width=\"150\">\n";
blocks(right);
}
echo "<td bgcolor=\"#000000\"><img src=\"themes/NukeNews/images/pixel.gif\" width=5 height=1 border=0 alt=\"\">\n"
."\n";

include ("themes/kiowa/footer.php");
echo "
";
echo "<table width=\"99%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bgcolor=\"#000000\" align=\"center\"><tr align=\"center\">\n"
."<td width=\"100%\">\n";
footmsg();
echo "\n"
."
\n";
}

/************************************************************/
/* Function themeindex() */
/* */
/* This function format the stories on the Homepage */
/************************************************************/

function themeindex ($aid, $informant, $time, $title, $counter, $topic, $thetext, $notes, $morelink, $topicname, $topicimage, $topictext) {
global $anonymous, $tipath;
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\">\n"
."<table border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\">\n"
."<table border=\"0\" cellpadding=\"3\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\"><td align=\"left\">\n"
."<span class=\"title\">$title\n"
.""
.""
."<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">"
.""
."<td width=\"2%\"><img src=\"themes/kiowa/images/left_title.jpg\" width=\"30\" height=\"7\">"
."<td width=\"95%\" background=\"themes/kiowa/images/line_title.jpg\"><img src=\"themes/kiowa/images/pixel.gif\" width=\"1\" height=\"1\">"
."<td width=\"3%\"><img src=\"themes/kiowa/images/right_title.jpg\" width=\"31\" height=\"7\">"
.""
.""
."\n"
."<font color=\"#999999\"><a href=\"search.php?query=&topic=$topic\"><img src=\"$tipath$topicimage\" border=\"0\" Alt=\"$topictext\" align=\"right\" hspace=\"10\" vspace=\"10\">\n";
FormatStory($thetext, $notes, $aid, $informant);
echo "\n"
."<table border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\">\n"
."<table border=\"0\" cellpadding=\"3\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\"><td align=\"center\">\n"
."<font color=\"#999999\" size=\"1\">"._POSTEDBY." ";
echo formatAidHeader($aid);
echo " "._ON." $time $timezone ($counter "._READS.")
\n"
."<font size=\"2\">$morelink\n"
."\n"
."

\n\n\n";
}

/************************************************************/
/* Function themeindex() */
/* */
/* This function format the stories on the story page, when */
/* you click on that "Read More..." link in the home */
/************************************************************/

function themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
global $admin, $sid, $tipath;
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\">\n"
."<table border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\">\n"
."<table border=\"0\" cellpadding=\"3\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\"><td align=\"left\">\n"
."<span class=\"title\">$title
\n"
."<font size=\"2\">"._POSTEDON." $datetime "._BY." ";
formatAidHeader($aid);
if (is_admin($admin)) {
echo "
[ <a href=\"admin.php?op=EditStory&sid=$sid\">"._EDIT." | <a href=\"admin.php?op=RemoveStory&sid=$sid\">"._DELETE." ]\n";
}
echo ""
.""
."<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">"
.""
."<td width=\"2%\"><img src=\"themes/kiowa/images/left_title.jpg\" width=\"30\" height=\"7\">"
."<td width=\"95%\" background=\"themes/kiowa/images/line_title.jpg\"><img src=\"themes/kiowa/images/pixel.gif\" width=\"1\" height=\"1\">"
."<td width=\"3%\"><img src=\"themes/kiowa/images/right_title.jpg\" width=\"31\" height=\"7\">"
.""
.""
."\n";
echo "<a href=\"search.php?query=&topic=$topic\"><img src=\"$tipath$topicimage\" border=\"0\" Alt=\"$topictext\" align=\"right\" hspace=\"10\" vspace=\"10\">\n";
FormatStory($thetext, $notes="", $aid, $informant);
echo "
\n\n\n";
}

/************************************************************/
/* Function themesidebox() */
/* */
/* Control look of your blocks. Just simple. */
/************************************************************/

function themesidebox($title, $content) {
echo "<table border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"150\">\n"
."<table border=\"0\" cellpadding=\"3\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"100%\"><td align=left>\n"
."<span class=\"title\">$title\n"
."\n"
."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"150\">\n"
."<tr valign=\"top\"><td bgcolor=\"#000000\">\n"
."<img src=\"themes/kiowa/images/blok_header.jpg\" border=\"0\" alt=\"0\">"
."\n"
."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#000000\" width=\"150\">\n"
."<tr valign=\"top\"><td bgcolor=\"#000000\">\n"
."$content\n"
."\n"
."
\n\n\n";
}



?>
makaco Enviar MP




Powered by pnForum Version 2.6

Inicio  |  dpFaq  |  dpManuales  |  dpDescargas  |  dpThemes  |  Contacta

Web site powered by PostNuke MySQL PHP Postnuke Spain PHP RSSPixel Add to Technorati Favorites

Todos los logos y marcas registradas en este sitio son propiedad de sus respectivos dueños. Los comentarios son propiedad de sus autores, el resto es de este sitio Web (c) 2003, que fue creado con PostNuke, un sistema portal Web escrito en PHP. PostNuke es Software Libre liberado bajo la licencia GNU/GPL.

Dev-CMS.com :: Amplía tus horizontes.

HOSPEDAJE Y DOMINIOS -- Tu Hosting
Alojamiento Web --- Registro de Dominios