Avatar Image
Usuario habitual
Usuario habitual

como puedo pasar un theme de 1024x768 a 800x600?
Me explico, en 1024, se ve la pantalla completa(la zona de la izq, centro y derecha) pero en 800 solo se ve la zona izq. y central.
Se puede hacer algo para ajustarlo a 800x600?

Avatar Image
@man / @woman
@man / @woman

Pues, primero haz una copia del theme y trabaja con ella.

Tendras que editar los archivos del theme y buscar los width para ajustarles a tus necesidades... lo normale es usar % para que se ajusten a cualquier resolución.

Avatar Image
Usuario habitual
Usuario habitual

um.... es decir, de todos los index.php de los modulos?

Avatar Image
@man / @woman
@man / @woman

No, hombre... sino del theme.php que estes usando.

Avatar Image
Usuario habitual
Usuario habitual
este es el theme.php


<?php

/************************************************************/
/* THEME NAME: Reality */
/* THEME DEVELOPER: Ýlyas Toker (http://www.realm.tr.cx) */
/************************************************************/

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

include("themes/Longrix/tables.php&quot;

/************************************************************/
/* 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, $dbi;
cookiedecode($user);
$username = $cookie[1];
if ($username == "&quot {
$username = "Anonymous";
}
echo "<body bgcolor=000000 leftmargin=\"40\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">";
if ($banners == 1) {
include("banners.php&quot;
}
$topics_list = "<select name=\"new_topic\" onChange='submit()'>\n";
$topics_list .= "<option value=\"\">Todos los Temas</option>\n";
$toplist = sql_query("select topicid, topictext from ".$prefix."_topics order by topictext", $dbi);
while(list($topicid, $topics) = sql_fetch_row($toplist, $dbi)) {
if ($topicid==$topic) { $sel = "selected "; }
$topics_list .= "<option $sel value=\"$topicid\">$topics</option>\n";
$sel = "";
}
if ($username == "Anonymous&quot {
$theuser = "&nbsp;&nbsp;<a href=\"modules.php?name=Your_Account&op=new_user\">Creaar una Cuenta";
} else {
$theuser = "&nbsp;&nbsp;Hola $username!";
}
$tmpl_file = "themes/Longrix/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(left);
$tmpl_file = "themes/Longrix/left_center.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* 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, $foot1, $foot2, $foot3, $foot4;
if ($index == 1) {
$tmpl_file = "themes/Longrix/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
$footer_message = "$foot1<br>$foot2<br>$foot3<br>$foot4";
$tmpl_file = "themes/Longrix/footer.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* 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;
if ($notes != "&quot {
$notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
} else {
$notes = "";
}
if ("$aid" == "$informant&quot {
$content = "$thetext$notes\n";
} else {
if($informant != "&quot {
$content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;uname=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
}
$posted = ""._POSTEDBY." ";
$posted .= get_author($aid);
$posted .= " "._ON." $time $timezone ($counter "._READS.&quot";
$tmpl_file = "themes/Longrix/story_home.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* Function themearticle() */
/* */
/* 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;
$posted = ""._POSTEDON." $datetime "._BY." ";
$posted .= get_author($aid);
if ($notes != "&quot {
$notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
} else {
$notes = "";
}
if ("$aid" == "$informant&quot {
$content = "$thetext$notes\n";
} else {
if($informant != "&quot {
$content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;uname=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
}
$tmpl_file = "themes/Longrix/story_page.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

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

function themesidebox($title, $content) {
$tmpl_file = "themes/Longrix/blocks.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

?>




que debo cambiar?(para ponerlo a 800x600)
Avatar Image
@man / @woman
@man / @woman

Son en las tablas, en tu caso pone:
nclude("themes/Longrix/tables.php&quot;

Es decir, que suipongo que estaran en ese archivo. Le editas y buscas el tag <table.... width="XX%"

Allí se cambia.

Avatar Image
Usuario habitual
Usuario habitual

este es el tables.php

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

function CloseTable() {
echo "</td></tr></table></td></tr></table>\n";
}

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

function CloseTable2() {
echo "</td></tr></table></td></tr></table>\n";
}

?>

no esta bien puesto, 100%??

Avatar Image
@man / @woman
@man / @woman

En principio esta bien... pon la dirección para que lo vea como queda...

Avatar Image
Usuario habitual
Usuario habitual
Avatar Image
@man / @woman
@man / @woman

Pues viendo el código fuente pone:

Cita:

<body bgcolor=000000 leftmargin="40" text="#000000" link="#363636" vlink="#363636" alink="#d5ae83"><table border="0" align="center" cellpadding="0" width=900 cellspacing="0" >


Alli pone un 900 en width.

Mira a ver que ademas del theme.php tienes un header.html que quizás este allí indicado.

Avatar Image
Usuario habitual
Usuario habitual

en el header he puesto width=500 y mira lo que pasa...

http://webferchu.webcindario.com

Avatar Image
@man / @woman
@man / @woman
Escrito originalmente por Razor_back
en el header he puesto width=500 y mira lo que pasa...

http://webferchu.webcindario.com



Pues no sera en ese... pero hay uno que te pone 900, como puedes ver al ver el código fuentem, edita todos y buscalo.
Avatar Image
Usuario habitual
Usuario habitual

vale, cuando pueda hago los cambios

ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES,
te recomendamos abrir un nuevo tema en lugar de responder al actual
Opciones:
Ir al subforo:
Permisos:
TU NO PUEDES Escribir nuevos temas
TU NO PUEDES Responder a los temas
TU NO PUEDES Editar tus propios mensajes
TU NO PUEDES Borrar tus propios mensajes
Temas similares
No se han encontrado temas similares