Visualizzazione risultati 1 fino 21 di 21

Discussione: [Php Nuke] Colori del Tema

  1. #1
    Guest

    Predefinito Colori del Tema

    Salve!Avete presente il mio sito?
    io vorrei che lo sfondo in blu scuro e lo sfondo in azzurro diventassero di colore nero.Ho provato a modificare il file theme.php ,ma non mi da di colore nero tutte le parti dello sfondo.Qualcuno può dirmi come fare,o darmi il codice già fatto?(se vi può essere utili come tema sto usando DeepBlue)

  2. #2
    Guest

    Predefinito

    modifica il codice del css del tema

  3. #3
    Guest

    Predefinito

    e dove lo trovo?come si chiama questo file?

  4. #4
    Ospite Guest

    Predefinito

    non sarebbe una cattiva idea se indicassi il tema di quale forum/cms devi modificare !

    ricordati che piu' sei preciso nella richiesta piu' l' aiuto da parte nostra sara' diretto e preciso ! =)

    cmq si dovrebbe trovare nella cartella del tema .. il file è con estensione .css .. quindi non puoi sbagliare ..

    xiao
    bart

  5. #5
    Guest

    Predefinito

    Citazione Originalmente inviato da ModdingWorld
    non sarebbe una cattiva idea se indicassi il tema di quale forum/cms devi modificare !
    Che????Scusami,ma io di phpnuke nn sono molto pratico,perciò potresti spiegarmi meglio?il file css lo trovato ma nn ho trovato cosa modificare...

  6. #6
    Ospite Guest

    Predefinito

    Allora , da quanto vedo e da quanto hai detto usi php-nuke , e il tema è il deepblue ...

    per modificare lo sfondo del nuke, non serve modificare il css , ma il file theme.php ..

    quindi , se riesci a postare qui il codice di quel file [ sempre che non sia lunghissimo , ed inoltre scrivilo cosi' nel messaggio


    [PHP ] <-- senza lo spazio tra P e ]

    qui incolli il codice di theme.php

    [/PHP]




    almeno vediamo cosa fare ..

    ciao
    bart

  7. #7
    Guest

    Predefinito

    Codice PHP:
    <?php

    $bgcolor1
    = "#ffffff";
    $bgcolor2 = "#9cbee6";
    $bgcolor3 = "#d3e2ea";
    $bgcolor4 = "#0E3259";
    $textcolor1 = "#000000";
    $textcolor2 = "#000000";

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

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

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

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

    function
    FormatStory($thetext, $notes, $aid, $informant) {
    global
    $anonymous;
    if (
    $notes != "") {
    $notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
    } else {
    $notes = "";
    }
    if (
    "$aid" == "$informant") {
    echo
    "<font class=\"content\">$thetext$notes</font>\n";
    } else {
    if(
    $informant != "") {
    $boxstuff = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;username=$informant\">$informant</a> ";
    } else {
    $boxstuff = "$anonymous ";
    }
    $boxstuff .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
    echo
    "<font class=\"content\">$boxstuff</font>\n";
    }
    }

    /************************************************************/
    /* Function themeheader() */
    /************************************************************/

    function themeheader() {
    global
    $banners, $sitename;
    echo
    "<body bgcolor=\"#000000\" text=\"#0000ff\" link=\"0000ff\">"
    ."<br>";
    if (
    $banners) {
    include(
    "banners.php");
    echo
    "<br>";
    }

    echo
    "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"840\" align=\"center\">\n"
    ."<tr><td width=\"100%\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"840\">\n"
    ."<tr><td width=\"100%\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"840\">\n"
    ."<tr><td width=\"100%\" height=\"88\" bgcolor=\"#FFFFFF\">\n"
    ."<table border=0 width=100% cellpadding=0 cellspacing=0><tr><td align=\"left\"><a href=\"index.php\"><img border=\"0\" src=\"themes/DeepBlue/images/logo.png\" alt=\"Benvenuto in $sitename!\" hspace=\"0\"></a></td><td align=\"right\"></td></tr></table></td></tr>\n"
    ."<tr><td width=\"100%\" bgcolor=\"#000000\" height=\"19\" valign=\"bottom\">\n"
    ."<a href=\"index.php\"><img border=\"0\" src=\"themes/DeepBlue/images/home.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Your_Account\"><img border=\"0\" src=\"themes/DeepBlue/images/account.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Downloads\"><img border=\"0\" src=\"themes/DeepBlue/images/downloads.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Submit_News\"><img border=\"0\" src=\"themes/DeepBlue/images/submit.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Topics\"><img border=\"0\" src=\"themes/DeepBlue/images/topics.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Top\"><img border=\"0\" src=\"themes/DeepBlue/images/top10.gif\" width=\"140\" height=\"18\"></a>"
    ."</td></tr><tr><td width=\"100%\" height=\"10\" bgcolor=\"#000000\">\n"
    ."</td></tr></table>\n"
    ."</td></tr><tr><td width=\"100%\"><table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td bgcolor='#000000'>\n"
    ;
    $public_msg = public_message();
    echo
    "$public_msg<br>";
    echo
    "</td></tr></table><table width=\"840\" cellpadding=\"0\" bgcolor=\"d3e2ea\" cellspacing=\"0\" border=\"0\">\n"
    ."<tr valign=\"top\">\n"
    ."<td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"6\" height=\"1\" border=\"0\" alt=\"\"></td>\n"
    ."<td width=\"138\" bgcolor=\"000000\" valign=\"top\">\n";
    blocks(left);
    echo
    "</td><td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td><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;
    echo
    "<br>";
    if (
    $index == 1) {
    echo
    "</td><td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td><td valign=\"top\" width=\"138\" bgcolor=\"#000000\">\n";
    blocks(right);
    echo
    "<td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"6\" height=\"1\" border=\"0\" alt=\"\">";
    }
    else {
    echo
    "</td><td colspan=\"2\"><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\">";
    }
    echo
    "<br><br></td></tr></table>\n"
    ."<br><center>";
    footmsg();
    echo
    "</center>";
    }


    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\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<img src=\"themes/DeepBlue/images/dot.gif\" border=\"0\"></td><td width=\"100%\" bgcolor=\"#FFFFFF\"><font class=\"option\"><b>&nbsp;$title</b></font></td></tr>\n"
    ."<tr><td colspan=\"2\" bgcolor=\"#FFFFFF\"><br>\n"
    ."<table border=\"0\" width=\"98%\" align=\"center\"><tr><td>\n"
    ."<a href=\"modules.php?name=News&new_topic=$topic\"><img src=\"$tipath$topicimage\" alt=\"$topictext\" border=\"0\" align=\"right\"></a>";
    FormatStory($thetext, $notes, $aid, $informant);
    echo
    "</td></tr></table>\n"
    ."</td></tr></table><br>\n"
    ."</td></tr><tr><td bgcolor=\"#FFFFFF\" align=\"center\">\n"
    ."<font class=\"tiny\">"._POSTEDBY." ";
    formatAidHeader($aid);
    echo
    " "._ON." $time $timezone ($counter "._READS.")<br></font>\n"
    ."<font class=\"content\">$morelink</font></center><br>\n"
    ."<img src=\"themes/DeepBlue/images/pixel.gif\" border=\"0\" height=\"3\">\n"
    ."</td></tr></table>\n"
    ."</td></tr></table><br>\n";
    }

    function
    themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
    global
    $admin, $sid, $tipath;
    echo
    "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"100%\"><tr><td bgcolor=\"#000000\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#000000\">\n"
    ."<img src=\"themes/DeepBlue/images/dot.gif\" border=\"0\"></td><td width=\"100%\" bgcolor=\"#000000\"><font class=\"option\"><b>&nbsp;$title</b></font></td></tr>\n"
    ."<tr><td colspan=\"2\" bgcolor=\"#000000\"><br>\n"
    ."<table border=\"0\" width=\"98%\" align=\"center\"><tr><td>\n"
    ."<a href=\"modules.php?name=News&new_topic=$topic\"><img src=\"$tipath$topicimage\" alt=\"$topictext\" border=\"0\" align=\"right\"></a>";
    FormatStory($thetext, $notes="", $aid, $informant);
    echo
    "</td></tr></table>\n"
    ."</td></tr></table><br>\n"
    ."</td></tr></table>\n"
    ."</td></tr></table><br><br>\n";
    }

    function
    themesidebox($title, $content) {
    echo
    "<table border=\"0\" align=\"center\" width=\"138\" cellpadding=\"0\" cellspacing=\"0\">"
    ."<tr><td background=\"themes/DeepBlue/images/table-title.gif\" width=\"138\" height=\"20\">"
    ."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"#FFFFFF\"><b>$title</b></font>"
    ."</td></tr><tr><td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"100%\" height=\"3\"></td></tr></table>\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"138\">\n"
    ."<tr><td width=\"138\" bgcolor=\"#000000\">\n"
    ."<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" width=\"138\">\n"
    ."<tr><td width=\"138\" bgcolor=\"#ffffff\">\n"
    ."$content"
    ."</td></tr></table></td></tr></table><br>";
    }

    ?>

  8. #8
    Ospite Guest

    Predefinito

    guarde le prima 6 righe, di quelle due nota "$bgcolor3" e "$bgcolor4" , rappresentano rispettivamente lo sfondo blu e lo sfondo azzurro:

    $bgcolor1 = "#ffffff";
    $bgcolor2 = "#9cbee6";
    $bgcolor3 = "#d3e2ea"; <-- Questo
    $bgcolor4 = "#0E3259"; <-- Questo
    $textcolor1 = "#000000";
    $textcolor2 = "#000000";

    quindi sostituisci quelle due righe cosi' :


    $bgcolor3 = "#000000";
    $bgcolor4 = "#000000";

    cosi' dovrebbe reggere =)

    fammi sapere se funziona !

    ciao

    bart

  9. #9
    Guest

    Predefinito

    no,nn cambia nulla...sob

  10. #10
    Ospite Guest

    Predefinito

    uhm uhm .. facciamo un prova e dopo andiamo ad esclusioni .. cambia

    $bgcolor1 = "#ffffff";
    $bgcolor2 = "#9cbee6";
    $bgcolor3 = "#d3e2ea";
    $bgcolor4 = "#0E3259";
    $textcolor1 = "#000000";
    $textcolor2 = "#000000";

    in:

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

    in teoria , per forza di cose lo sfondo dovrebbe cambiare ..

    EDIT: inoltre il file theme.php che hai modificato proviene da questa directory, vero?

    halfbloodprince.altervista.org/themes/DeepBlue/theme.php[/url]

  11. #11
    Guest

    Predefinito

    adesso l'unica cosa che è diventata nera e il blocco del mess di benvenuto.no cmq nn arriva da li,perchè lo sto provando in locale
    Ultima modifica di HalfBloodPrince : 11-08-2005 alle ore 18.23.47

  12. #12
    Ospite Guest

    Predefinito

    ma porca zo**la

    riprova cosi' , ho modificato due cose nel codice:

    Codice PHP:
    <?php

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

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

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

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

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

    function
    FormatStory($thetext, $notes, $aid, $informant) {
    global
    $anonymous;
    if (
    $notes != "") {
    $notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
    } else {
    $notes = "";
    }
    if (
    "$aid" == "$informant") {
    echo
    "<font class=\"content\">$thetext$notes</font>\n";
    } else {
    if(
    $informant != "") {
    $boxstuff = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;username =$informant\">$informant</a> ";
    } else {
    $boxstuff = "$anonymous ";
    }
    $boxstuff .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
    echo
    "<font class=\"content\">$boxstuff</font>\n";
    }
    }

    /************************************************** **********/
    /* Function themeheader() */
    /************************************************** **********/

    function themeheader() {
    global
    $banners, $sitename;
    echo
    "<body bgcolor=\"#\" text=\"#0000ff\" link=\"0000ff\">"
    ."<br>";
    if (
    $banners) {
    include(
    "banners.php");
    echo
    "<br>";
    }

    echo
    "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"840\" align=\"center\">\n"
    ."<tr><td width=\"100%\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"840\">\n"
    ."<tr><td width=\"100%\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"840\">\n"
    ."<tr><td width=\"100%\" height=\"88\" bgcolor=\"#FFFFFF\">\n"
    ."<table border=0 width=100% cellpadding=0 cellspacing=0><tr><td align=\"left\"><a href=\"index.php\"><img border=\"0\" src=\"themes/DeepBlue/images/logo.png\" alt=\"Benvenuto in $sitename!\" hspace=\"0\"></a></td><td align=\"right\"></td></tr></table></td></tr>\n"
    ."<tr><td width=\"100%\" bgcolor=\"#\" height=\"19\" valign=\"bottom\">\n"
    ."<a href=\"index.php\"><img border=\"0\" src=\"themes/DeepBlue/images/home.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Your_Account\"><img border=\"0\" src=\"themes/DeepBlue/images/account.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Downloads\"><img border=\"0\" src=\"themes/DeepBlue/images/downloads.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Submit_News\"><img border=\"0\" src=\"themes/DeepBlue/images/submit.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Topics\"><img border=\"0\" src=\"themes/DeepBlue/images/topics.gif\" width=\"140\" height=\"18\"></a>"
    ."<a href=\"modules.php?name=Top\"><img border=\"0\" src=\"themes/DeepBlue/images/top10.gif\" width=\"140\" height=\"18\"></a>"
    ."</td></tr><tr><td width=\"100%\" height=\"10\" bgcolor=\"#\">\n"
    ."</td></tr></table>\n"
    ."</td></tr><tr><td width=\"100%\"><table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td bgcolor='#'>\n"
    ;
    $public_msg = public_message();
    echo
    "$public_msg<br>";
    echo
    "</td></tr></table><table width=\"840\" cellpadding=\"0\" bgcolor=\"000000\" cellspacing=\"0\" border=\"0\">\n"
    ."<tr valign=\"top\">\n"
    ."<td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"6\" height=\"1\" border=\"0\" alt=\"\"></td>\n"
    ."<td width=\"138\" bgcolor=\"\" valign=\"top\">\n";
    blocks(left);
    echo
    "</td><td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td><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;
    echo
    "<br>";
    if (
    $index == 1) {
    echo
    "</td><td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td><td valign=\"top\" width=\"138\" bgcolor=\"#\">\n";
    blocks(right);
    echo
    "<td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"6\" height=\"1\" border=\"0\" alt=\"\">";
    }
    else {
    echo
    "</td><td colspan=\"2\"><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\">";
    }
    echo
    "<br><br></td></tr></table>\n"
    ."<br><center>";
    footmsg();
    echo
    "</center>";
    }


    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\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<img src=\"themes/DeepBlue/images/dot.gif\" border=\"0\"></td><td width=\"100%\" bgcolor=\"#FFFFFF\"><font class=\"option\"><b>&nbsp;$title</b></font></td></tr>\n"
    ."<tr><td colspan=\"2\" bgcolor=\"#FFFFFF\"><br>\n"
    ."<table border=\"0\" width=\"98%\" align=\"center\"><tr><td>\n"
    ."<a href=\"modules.php?name=News&new_topic=$topic\"><img src=\"$tipath$topicimage\" alt=\"$topictext\" border=\"0\" align=\"right\"></a>";
    FormatStory($thetext, $notes, $aid, $informant);
    echo
    "</td></tr></table>\n"
    ."</td></tr></table><br>\n"
    ."</td></tr><tr><td bgcolor=\"#FFFFFF\" align=\"center\">\n"
    ."<font class=\"tiny\">"._POSTEDBY." ";
    formatAidHeader($aid);
    echo
    " "._ON." $time $timezone ($counter "._READS.")<br></font>\n"
    ."<font class=\"content\">$morelink</font></center><br>\n"
    ."<img src=\"themes/DeepBlue/images/pixel.gif\" border=\"0\" height=\"3\">\n"
    ."</td></tr></table>\n"
    ."</td></tr></table><br>\n";
    }

    function
    themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
    global
    $admin, $sid, $tipath;
    echo
    "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#FFFFFF\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"100%\"><tr><td bgcolor=\"#\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#\">\n"
    ."<img src=\"themes/DeepBlue/images/dot.gif\" border=\"0\"></td><td width=\"100%\" bgcolor=\"#\"><font class=\"option\"><b>&nbsp;$title</b></font></td></tr>\n"
    ."<tr><td colspan=\"2\" bgcolor=\"#\"><br>\n"
    ."<table border=\"0\" width=\"98%\" align=\"center\"><tr><td>\n"
    ."<a href=\"modules.php?name=News&new_topic=$topic\"><img src=\"$tipath$topicimage\" alt=\"$topictext\" border=\"0\" align=\"right\"></a>";
    FormatStory($thetext, $notes="", $aid, $informant);
    echo
    "</td></tr></table>\n"
    ."</td></tr></table><br>\n"
    ."</td></tr></table>\n"
    ."</td></tr></table><br><br>\n";
    }

    function
    themesidebox($title, $content) {
    echo
    "<table border=\"0\" align=\"center\" width=\"138\" cellpadding=\"0\" cellspacing=\"0\">"
    ."<tr><td background=\"themes/DeepBlue/images/table-title.gif\" width=\"138\" height=\"20\">"
    ."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=\"#FFFFFF\"><b>$title</b></font>"
    ."</td></tr><tr><td><img src=\"themes/DeepBlue/images/pixel.gif\" width=\"100%\" height=\"3\"></td></tr></table>\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"138\">\n"
    ."<tr><td width=\"138\" bgcolor=\"#\">\n"
    ."<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" width=\"138\">\n"
    ."<tr><td width=\"138\" bgcolor=\"#ffffff\">\n"
    ."$content"
    ."</td></tr></table></td></tr></table><br>";
    }

    ?>

  13. #13
    Guest

    Predefinito

    EVVIVA!!!!FUNGE!FUNGE!!!!!L'unica cosa e che mi da una riga in cima alla pagina con sopra scritto ________________________[My Site]

  14. #14
    Ospite Guest

    Predefinito

    uhm .. io lo vedo come prima il sito

  15. #15
    Guest

    Predefinito

    ti ricordo che le modifiche le ho fatte in locale!

  16. #16
    Ospite Guest

    Predefinito

    ahh .. ecco perchè

    allora , la scritta ti rimane ancora, di che colore è ?

  17. #17
    Guest

    Predefinito

    per la questione _____________________[My Site] o risolto,c'era scritto in fondo al codice.Tank You!

  18. #18
    Ospite Guest

    Predefinito

    di niente

    son contento di esserti servito in un qualche modo

    xiao
    bart

  19. #19
    Guest

    Predefinito

    senti un po',hai presente quando salvi una pagina nei preferiti e al posto del marchio di explorer ti viene il marchio del sito vero e proprio?Sai mica come si fa?

  20. #20
    Ospite Guest

    Predefinito

    'azzo .. manco finito di dire prego

    anche se saremmo ot [se hai altro da chiedere sulla questione meglio che apri un 3d in primo livello ]

    ti linko un tutorial per fare cio' :

    clicca

  21. #21
    Guest

    Predefinito

    tanks!

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •