Autore | Messaggio |
ecko Senior 1°Level
Registrato: Jan 18, 2004 Messaggi: 220
|
Oggetto: Problema con nuovo tema |
|
|
Ciao. I'm always here
Ho un problemino con un tema di weblord:
come vedi
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login | in alto a destra, c'è lo spazio bianco per il banner.. io non lo voglio, ma non so come toglierlo.
I banner, nelle preferenze, sono disattivati, ma quello spazio resta lo stesso. Questa la parte del file theme.php a riguardo:
Citazione: | /************************************************************/
/* 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, $name, $slogan, $cookie, $prefix, $dbi;
cookiedecode($user);
$username = $cookie[1];
if ($username == "") {
$username = "Anonymous";
}
echo "<body bgcolor=\"#E3EBED\" text=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">";
/* if ($banners == 1) {
include("banners.php");}*/
$topics_list = "<select name=\"new_topic\" onChange='submit()'>\n";
$topics_list .= "<option value=\"\">All Topics</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") {
$theuser = " <a href=\"modules.php?name=Your_Account&op=new_user\">Clicca qui per registrarti";
} else {
$theuser = " Benvenuto $username!";
}
$tmpl_file = "themes/UltraTech/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
if ($name=='Forums') {}
else
if ($name=='Private_Messages') {}
else
if ($name=='Members_List') {}
else
blocks(left);
$tmpl_file = "themes/UltraTech/left_center.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
|
Ho provato anche a togliere la stringa:
Citazione: | /* if ($banners == 1) {
include("banners.php");}*/ |
..ma non cambia niente.
Puoi postarmi questa parte corretta? Thanks a lot.
|
|
Inviato:
Mer Dic 08, 2004 1:27 am |
|
|
|
|
Sniffer Amministratore
Registrato: Jul 20, 2003 Messaggi: 3218
Località: Verona
|
Oggetto: |
|
|
Il tema che stai utilizzando fa uso di file .html quindi devi aprire il file header.html e cancellare la riga
Codice: | <iframe src="banners.php" marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no height=60 width=468></iframe> |
Ciao
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login |
|
|
Inviato:
Mer Dic 08, 2004 2:13 am |
|
|
ecko Senior 1°Level
Registrato: Jan 18, 2004 Messaggi: 220
|
Oggetto: |
|
|
Yes! Thanks.
|
|
Inviato:
Mer Dic 08, 2004 12:53 pm |
|
|
ecko Senior 1°Level
Registrato: Jan 18, 2004 Messaggi: 220
|
Oggetto: |
|
|
Continuando le modifiche..
i blocchi hanno un'immagine (tipo un rettangolo verde) sia sopra che sotto. Vorrei togliere quello sotto.. ma non ho la minima idea di dover metter mano. Thanks.
|
|
Inviato:
Mer Dic 08, 2004 2:00 pm |
|
|
Sniffer Amministratore
Registrato: Jul 20, 2003 Messaggi: 3218
Località: Verona
|
Oggetto: |
|
|
Apri il file blocks.html e cancella le righe 23 - 24 - 25
Ciao
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login |
|
|
Inviato:
Mer Dic 08, 2004 4:48 pm |
|
|
ecko Senior 1°Level
Registrato: Jan 18, 2004 Messaggi: 220
|
Oggetto: |
|
|
Nella cartella db?
Ho aperto il file, ma usando solo notepad come editor, non ci sono righe.. il testo è tutto "attaccato". Come posso fare?[/quote]
|
|
Inviato:
Mer Dic 08, 2004 7:03 pm |
|
|
Sniffer Amministratore
Registrato: Jul 20, 2003 Messaggi: 3218
Località: Verona
|
Oggetto: |
|
|
Il file blocks.html lo trovi nella cartella del tema, queste sono le 3 righe da commentare o cancellare:
Codice: | <tr>
<td width="175" height="20" background="themes/UltraTech/images/sottoblocco.gif"> </td>
</tr> |
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login |
|
|
Inviato:
Mer Dic 08, 2004 7:15 pm |
|
|
ecko Senior 1°Level
Registrato: Jan 18, 2004 Messaggi: 220
|
Oggetto: |
|
|
Inviato:
Gio Dic 09, 2004 2:00 am |
|
|
|