Author Topic: wo die menüleiste verändern?  (Read 7039 times)

0 Members and 1 Guest are viewing this topic.

Offline dima

  • Pre-Newbie
  • Posts: 7
    • View Profile
wo die menüleiste verändern?
« on: February 25, 2007, 07:34:33 PM »
hallo,

kann mir einer sagen wo ich das tpl. für die leiste wo Registrierte Benutzer und Zufallsbild ist finden kann?

soll alles für nicht regestrierte user sein.

danke

Offline honda2000

  • 4images Guru
  • *******
  • Posts: 3.263
    • View Profile
    • Wir machen Internet!
Re: wo die menüleiste verändern?
« Reply #1 on: February 25, 2007, 08:17:39 PM »
wie jetzt??
soll raus???
in jedem HAUPT-Template
{user_box}
und
{random_image}

Offline dima

  • Pre-Newbie
  • Posts: 7
    • View Profile
Re: wo die menüleiste verändern?
« Reply #2 on: February 25, 2007, 08:54:39 PM »
naja nicht rauß.

sollte was drunter.

Offline honda2000

  • 4images Guru
  • *******
  • Posts: 3.263
    • View Profile
    • Wir machen Internet!
Re: wo die menüleiste verändern?
« Reply #3 on: February 25, 2007, 09:14:43 PM »
naja, da drunter
Code: [Select]
<tr><td>dein Text/inhalt</td></tr>

Offline dima

  • Pre-Newbie
  • Posts: 7
    • View Profile
Re: wo die menüleiste verändern?
« Reply #4 on: February 26, 2007, 05:12:59 PM »
und welche datei muss ich da verändern?

Offline honda2000

  • 4images Guru
  • *******
  • Posts: 3.263
    • View Profile
    • Wir machen Internet!
Re: wo die menüleiste verändern?
« Reply #5 on: February 26, 2007, 05:19:37 PM »
na alle haupttemplates, wenn du es in allen dateien sehen möchtest
(es kommst doch nun ganz darauf an, welches Template du verwendest)

Offline dima

  • Pre-Newbie
  • Posts: 7
    • View Profile
Re: wo die menüleiste verändern?
« Reply #6 on: February 26, 2007, 05:33:29 PM »
ich verwende die Standart tpl.

es soll auf der Startseite zu sehen sein und auf der wo man sich das bild ansieht.

Offline honda2000

  • 4images Guru
  • *******
  • Posts: 3.263
    • View Profile
    • Wir machen Internet!
Re: wo die menüleiste verändern?
« Reply #7 on: February 26, 2007, 08:17:26 PM »
schick doch mal einen LINK zur URL, gern auch per PN, dann schaun wir mal

EDIT:
nur Startseite und "da wo das Bild zu sehen ist..."
wären: home.html und details.html

Code: [Select]
<table width="150" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td class="head2" height="20"><img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />{lang_registered_user}</td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                    <tr>
                      <td align="center" class="row1">{user_box}</td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                  </table>
  {if random_image}
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td class="head2" height="20"> <img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />{lang_random_image}</td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                    <tr>
                      <td align="center" class="row1">
    <br />
                        {random_image}
<br />
                        <br />
                      </td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                  </table>
  {endif random_image}

unter dem Zufallsbild, noch bevor</td> kommt:

Code: [Select]
<table width="150" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td class="head2" height="20"> <img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />Beschreibung der Box</td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                    <tr>
                      <td align="center" class="row1">
    <br />
                      Inhalt der Box<br />
                        <br />
                      </td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                  </table>


einfügen
« Last Edit: February 27, 2007, 08:40:52 AM by honda2000 »